הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
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