A
Andrea Cacciarru
Why
template <class T> class TemplateFriend; //Forward Class "Template"
Declaration
class A {
friend class TemplateFriend; //Any type T!
};
compile well with VC++ 7 but do not compile wit gcc or Comeau? What says
Standard about friend template class declaration?
I have searched some informations about it but without success.
Thanks in advance,
bye Andrea
template <class T> class TemplateFriend; //Forward Class "Template"
Declaration
class A {
friend class TemplateFriend; //Any type T!
};
compile well with VC++ 7 but do not compile wit gcc or Comeau? What says
Standard about friend template class declaration?
I have searched some informations about it but without success.
Thanks in advance,
bye Andrea