From: Wolfgang Bangerth Date: Fri, 13 Jul 2012 20:07:25 +0000 (+0000) Subject: Disable one warning for Intel ICC. X-Git-Tag: v8.0.0~2438 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a1f0e5eefa140de3ddf63b74404bcbd09816ab3;p=dealii.git Disable one warning for Intel ICC. git-svn-id: https://svn.dealii.org/trunk@25697 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/aclocal.m4 b/deal.II/aclocal.m4 index 3cfaa6a09f..6f5af8006f 100644 --- a/deal.II/aclocal.m4 +++ b/deal.II/aclocal.m4 @@ -759,7 +759,10 @@ AC_DEFUN(DEAL_II_SET_CXX_FLAGS, dnl dnl (valid, but annoying and sometimes hard to work around) dnl #858: `type qualifier on return type is meaningless' dnl (on conversion operators to types that are already const) - CXXFLAGSG="$CXXFLAGSG -w1 -wd175 -wd525 -wd327 -wd424 -wd11 -wd734 -wd858" + dnl #1565: attributes are ignored on a class declaration that is not + dnl also a definition (this happens in BOOST in a number of + dnl places) + CXXFLAGSG="$CXXFLAGSG -w1 -wd175 -wd525 -wd327 -wd424 -wd11 -wd734 -wd858 -wd1565" CXXFLAGSO="$CXXFLAGSO -w0 -wd424 -wd11" dnl To reduce output, use -opt_report_levelmin where possible,