'identifier' : use of class template requires template argument list
A class template was used as an identifier without a template argument list. Add a valid template argument list to solve this problem.
The following example will generate the error:
template<class T> class X {};
X x; // C2955