You're simply not calling the f()
function in your recursive call, you're trying to "call the object":
You write:
TestDispatcher2D<...> t;
return t(m,n);
But you want:
TestDispatcher2D<...> t;
return t.f(m,n);
sth
2009-02-18 16:15:08