Partager via


Avertissement du compilateur (niveau 1) C4215

extension non standard utilisée : long float

Les extensions Microsoft par défaut (/Ze) traitent le type float long comme double. La compatibilité ANSI (/Za) ne le fait pas. Permet double de maintenir la compatibilité.

L’exemple suivant génère l’erreur C4215 :

// C4215.cpp
// compile with: /W1 /LD
long float a;   // C4215

// use the line below to resolve the warning
// double a;