नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
same type qualifier used more than once
Remarks
A type declaration or definition uses a type qualifier (const, volatile, signed, or unsigned) more than once, causing an error under ANSI compatibility (/Za).
Example
The following example generates C2289:
// C2289.cpp
// compile with: /Za /c
volatile volatile int i; // C2289
volatile int j; // OK