הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'type' : illegal type for __except expression, must be an integral
Remarks
A type was used in an __except statement, but the type is not allowed.
Example
The following example generates C2184:
// C2184.cpp
void f() {
int * p;
__try{}
__except(p){}; // C2184
}
Possible resolution:
// C2184b.cpp
// compile with: /c
void f() {
int i = 0;
__try{}
__except(i){};
}