הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'typedef' : missing tag name
Remarks
The compiler found an incomplete type definition.
Example
The following example generates C2332:
// C2332.cpp
// compile with: /c
struct S {
int i;
};
typedef struct * pS; // C2332
typedef struct S* pS; // OK
int get_S_i(pS p) {
return p->i;
}