From: Wolfgang Bangerth Date: Tue, 20 Apr 2004 21:30:07 +0000 (+0000) Subject: Take out another warning from icc. X-Git-Tag: v8.0.0~15272 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1be2c21b9a13c98310abac5799de845944a78b9;p=dealii.git Take out another warning from icc. git-svn-id: https://svn.dealii.org/trunk@9077 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/aclocal.m4 b/deal.II/aclocal.m4 index 76f188e8d7..f45a48127c 100644 --- a/deal.II/aclocal.m4 +++ b/deal.II/aclocal.m4 @@ -452,7 +452,9 @@ AC_DEFUN(DEAL_II_SET_CXX_FLAGS, dnl dnl #734: `X::X(const X&), required for copy that was eliminated, is dnl inaccessible' dnl (valid, but annoying and sometimes hard to work around) - CXXFLAGSG="$CXXFLAGS -Kc++eh -Krtti -w1 -wd175 -wd525 -wd327 -wd424 -wd11 -wd734 -DDEBUG -inline_debug_info" + dnl #858: `type qualifier on return type is meaningless' + dnl (on conversion operators to types that are already const) + CXXFLAGSG="$CXXFLAGS -Kc++eh -Krtti -w1 -wd175 -wd525 -wd327 -wd424 -wd11 -wd734 -wd858 -DDEBUG -inline_debug_info" CXXFLAGSO="$CXXFLAGS -Kc++eh -Krtti -O2 -unroll -w0 -wd424 -wd11" CXXFLAGSPIC="-KPIC" LDFLAGSPIC="-KPIC"