Sdílet prostřednictvím


Chyba kompilátoru C2378

'identifikátor' : redefinition; symbol nelze přetížit typedef

Poznámky

Identifikátor byl předdefinován jako typedef.

Example

Následující příklad vygeneruje C2378:

// C2378.cpp
// compile with: /c
int i;
typedef int i;   // C2378
typedef int b;   // OK