コンパイラの警告 (レベル 1) C4215
非標準の拡張機能が使用されています: long float です
既定の Microsoft 拡張機能 (/Ze) は long float を double
として扱います。 ANSI 互換性 (/Za) ではそのように扱いません。 互換性を維持するには、double
を使用します。
次の例では C4215 が生成されます:
// C4215.cpp
// compile with: /W1 /LD
long float a; // C4215
// use the line below to resolve the warning
// double a;