6
int i = 3.1 / 2

即使使用 -Wall 选项也不会引起任何警告。有时,我想知道精度损失在哪里。为什么 gcc 不支持此警告,而 msvc 支持此警告?

谢谢。

编辑:我的 gcc -v 显示

Configured with: ../../gcc-4.4.1/configure --prefix=/mingw --build=mingw32 --enable-languages=c,ada,c++,fortran,objc,obj-c++ --disable-nls --disable-win32-registry --enable-libgomp --enable-cxx-flags='-fno-function-sections -fno-data-sections' --disable-werror --enable-threads --disable-symvers --enable-version-specific-runtime-libs --enable-fully-dynamic-string --with-pkgversion='TDM-2 mingw32' --enable-sjlj-exceptions --with-bugurl=http://www.tdragon.net/recentgcc/bugs.php

4

1 回答 1

10

-Wconversion 警告隐式转换。

于 2010-01-04T12:28:14.997 回答