नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'identifier': a static data member is not allowed in an anonymous struct or union
Remarks
A member of an anonymous struct or union is declared static.
Example
The following example generates C2619, and demonstrates how to fix it by removing the static keyword.
// C2619.cpp
int main() {
union { static int j; }; // C2619
union { int j; }; // OK
}