Compiler Error C2332
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2332.
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;
}
Show: