From 7f47faf4f2fb142f715e3e47ed6f25a002d7a5d2 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 25 Sep 2005 22:35:48 +0000 Subject: [PATCH] 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 --- configure | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index b4a3a93efa..23c7f53690 100755 --- a/configure +++ b/configure @@ -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 diff --git a/configure.in b/configure.in index 1f9311a28d..5673ec1cb9 100644 --- a/configure.in +++ b/configure.in @@ -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" -- 2.45.2