j
k
j a
j l
Markus Schöpflin wrote:
Hmm, have a look at this: ---%<--- template <class T> struct foo { void bar() { foobar(); } };
Hmm, have a look at this:
---%<--- template <class T> struct foo { void bar() { foobar(); } };
This call to foobar is not dependent on T. Try template <class T> struct foo { void bar( T * p ) { foobar( p ); } };
Back to the thread
Back to the list