On Tue, Jun 24, 2008 at 4:06 PM, Andrew McPherson <[EMAIL PROTECTED]> wrote:
> template <class TAnotherClass> > class Test2 > { > public: > > void Initialize() > { You missed the template keyword here: > mTest.TestMe<Nothing2>(); That should be: mTest. template TestMe<Nothing2>(); > } > > Test1<TAnotherClass> mTest; > }; Thanks, Andrew Pinski