S
Staffan Langin
Hello,
Is there a workaround for the code-snippet below?
namespace A {
template<class T>
class Foo
{
};
}
template<class T>
class Foo : public A::Foo<T>
{
friend class A::Foo<T>;
};
Is there a workaround for the code-snippet below?
namespace A {
template<class T>
class Foo
{
};
}
template<class T>
class Foo : public A::Foo<T>
{
friend class A::Foo<T>;
};