Erreur du compilateur C2332
'typedef' : nom de balise manquant
Le compilateur a trouvé une définition de type incomplète.
L’exemple suivant génère l’erreur 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;
}