From be13f12a81f9903ed5f8fae9466f4ce26e275db6 Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 13 Jul 2012 20:07:25 +0000 Subject: [PATCH] Disable one warning for Intel ICC. git-svn-id: https://svn.dealii.org/trunk@25697 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/aclocal.m4 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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, -- 2.39.5