Partager via


Avertissement du compilateur (niveau 1) C4224

extension non standard utilisée : le paramètre formel 'identifier' a été précédemment défini comme un type

L’identificateur a été utilisé précédemment en tant que typedef. Cela provoque un avertissement sous compatibilité ANSI (/Za).

Exemple

// C4224.cpp
// compile with: /Za /W1 /LD
typedef int I;
void func ( int I );  // C4224