Compiler Error C2946
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 C2946.
explicit instantiation; 'class' is not a template-class specialization
You cannot explicitly instantiate a nontemplated class.
The following sample generates C2946.
// C2946.cpp
class C {};
template C; // C2946
int main() {}
Show: