D
desktop
When I try to compile this template:
template <typename T>
class ElementT<std::vector<T> > {
public:
typedef T Type;
};
I get the error:
main.cpp:11: error: ‘ElementT’ is not a template
make: *** [main.o] Error 1
What is causing this error?
template <typename T>
class ElementT<std::vector<T> > {
public:
typedef T Type;
};
I get the error:
main.cpp:11: error: ‘ElementT’ is not a template
make: *** [main.o] Error 1
What is causing this error?