הערה
גישה לעמוד זה דורשת אישור. אתה יכול לנסות להיכנס או לשנות תיקיות.
גישה לעמוד זה דורשת אישור. אתה יכול לנסות לשנות מדריכים.
explicit instantiation; 'class' is not a template-class specialization
Remarks
You cannot explicitly instantiate a nontemplated class.
Example
The following example generates C2946.
// C2946.cpp
class C {};
template C; // C2946
int main() {}