使用了非标准扩展: 长浮点
注解
默认的 Microsoft 扩展 (/Ze) 将长浮点视为 double。 ANSI 兼容性 (/Za) 则不会。 请使用 double 保持兼容性。
Example
以下示例生成 C4216:
// C4216.cpp
// compile with: /W1
float long a; // C4216
// use the line below to resolve the warning
// double a;
int main() {
}