नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
decltype expects an expression not a type
Remarks
The decltype() keyword requires an expression as an argument, not the name of a type.
Example
For example, the last statement in the following code fragment yields error C3553.
int x = 0;
decltype(x+1);
decltype(int); // C3553