Avviso del compilatore (livello 1) C4216
estensione non standard usata: float long
Le estensioni Microsoft predefinite (/Ze) considerano float fino a double
. La compatibilità ANSI (/Za) non è disponibile. Usare double
per mantenere la compatibilità. L'esempio seguente genera l'errore C4216:
// C4216.cpp
// compile with: /W1
float long a; // C4216
// use the line below to resolve the warning
// double a;
int main() {
}