Compiler Error C2913
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2913.
explicit specialization; 'declaration' is not a specialization of a class template
You cannot specialize a non-template class.
The following sample generates C2913:
// C2913.cpp
// compile with: /c
class X{};
template <class T> class Y{};
template<> class X<int> {}; // C2913
template<> class Y<int> {};
Show: