नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
an 'structure' cannot be a template/generic
Remarks
You attempted to make a class template or class generic out of an interface or an enum.
Example
The following example generates C3113:
// C3113.cpp
// compile with: /c
template <class T>
enum E {}; // C3113
// try the following line instead
// class MyClass{};