disable warning about data truncation (810) for icc (this is a useful warning and might be reenabled later but for now there are simply too many of them...)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35700 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2005-09-25 22:35:48 +00:00
parent f536f00539
commit 7f47faf4f2
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -42716,7 +42716,7 @@ elif test "$GCC" = yes ; then
fi
if test "x$INTELCXX" = "xyes" ; then
CXXWARNINGS="-Wall -wd279,383,444,869,981,1418,1419"
CXXWARNINGS="-Wall -wd279,383,444,810,869,981,1418,1419"
elif test "$GXX" = yes ; then
CXXWARNINGS="-Wall -Wundef -Wno-ctor-dtor-privacy"
fi

View File

@ -6904,7 +6904,7 @@ if test "x$INTELCXX" = "xyes" ; then
dnl remark #981: operands are evaluated in unspecified order
dnl remark #1418: external definition with no prior declaration
dnl remark #1419: external declaration in primary source file
CXXWARNINGS="-Wall -wd279,383,444,869,981,1418,1419"
CXXWARNINGS="-Wall -wd279,383,444,810,869,981,1418,1419"
elif test "$GXX" = yes ; then
dnl CXXWARNINGS="-Wall -W -Wcast-qual -Werror"
CXXWARNINGS="-Wall -Wundef -Wno-ctor-dtor-privacy"