1
vote
How to declare/define a class with template template parameters without using an extra template parameter
What is wrong with:
template <typename C >
struct B
{
C c;
};
int main()
{
B< A<int> > b;
return 0;
}
…
2
votes
Nested Template Specialization
According to these posts:
http://www.cpptalk.net/template-member-function-specialization …
