Compiler Error C2990

'class' : non-template class has already been defined as a template class

The given class was previously defined as a template class. Check header files to make sure that there are no conflicts. The following code generates this error:

template <class T> class C{};  // error
class C{};