Condividi tramite


Avviso del compilatore (livello 1) C4215

estensione non standard usata: long float

Le estensioni Microsoft predefinite (/Ze) considerano long float come double. La compatibilità ANSI (/Za) non è disponibile. Usare double per mantenere la compatibilità.

L'esempio seguente genera l'errore C4215:

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

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