This topic has not yet been rated - Rate this topic

Compiler Error C2372

'identifier' : redefinition; different types of indirection

The identifier is already defined with a different derived type.

The following sample generates C2326:

// C2372.cpp
// compile with: /c
extern int *fp;
extern int fp[];   // C2372
extern int fp2[];   // OK
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Advertisement