This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: egcs1.1 : nested template template parameter


> 	template< template< template<class> class > class Tmpl> A {}; 
[...]
> I think that this construction is allowed by the ANSI C++.

No, it is not. What you meant is

template< template< template<class> class > class Tmpl> class A {};

I could compile that with egcs 2.92.17.

Regards,
Martin


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]