First off, great work!
I hope this hasnôt been asked too many times before:
template<class T> class A {
int x;
};
class B {
friend class A<class T>; // This works
//template<class T> friend class A; This doesnôt
};
Is this correct behaviour ?