Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
In this article
'typedef' : missing tag name
The compiler found an incomplete type definition.
The following sample 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;
}