Udostępnij przez


Błąd kompilatora C2372

"identyfikator" : ponowne zdefiniowanie; różne typy pośredni

Uwagi

Identyfikator jest już zdefiniowany z innym typem pochodnym.

Example

Poniższy przykład generuje C2372:

// C2372.cpp
// compile with: /c
extern int *fp;
extern int fp[];   // C2372
extern int fp2[];   // OK