Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
explicit instantiation; 'class' is not a template-class specialization
You cannot explicitly instantiate a nontemplated class.
Example
The following sample generates C2946.
// C2946.cpp
class C {};
template C; // C2946
int main() {}