Hello,
Would you please give a hint to define a template class specialization in a template class which is in a namespace
I have tried following code with gcc 4.1 and get an error message but Visual studio has no problem with it.
namespace A {
template <typename T>
struct B {
template <typename X>
struct G;
template <>
struct G<int>;
};
}
Thanks in advance.