إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
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() {}