Paul J. Lucas
2007-03-06 19:01:54 UTC
Given:
template<typename T,typename U> class C { };
template<typename T> typedef C<T,int> C2;
I get:
test.cpp:2: error: template declaration of 'typedef'
Are template typedefs still not supported in g++ 4.1.2?
- Paul
template<typename T,typename U> class C { };
template<typename T> typedef C<T,int> C2;
I get:
test.cpp:2: error: template declaration of 'typedef'
Are template typedefs still not supported in g++ 4.1.2?
- Paul