From: Wolfgang Bangerth Date: Mon, 22 Nov 2004 21:31:24 +0000 (+0000) Subject: Disable another useless warning. X-Git-Tag: v8.0.0~14672 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8f5318c4a84ba1336d739f18533ca287d57e980;p=dealii.git Disable another useless warning. git-svn-id: https://svn.dealii.org/trunk@9800 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/aclocal.m4 b/deal.II/aclocal.m4 index 054c733ebd..0d18bed442 100644 --- a/deal.II/aclocal.m4 +++ b/deal.II/aclocal.m4 @@ -458,7 +458,8 @@ 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="$CXXFLAGS -Kc++eh -Krtti -w1 -wd175 -wd525 -wd327 -wd424 -wd11 -wd734 -wd858 -DDEBUG -inline_debug_info" + dnl #1572: floating-point equality and inequality comparisons are unreliable + CXXFLAGSG="$CXXFLAGS -Kc++eh -Krtti -w1 -wd175 -wd525 -wd327 -wd424 -wd11 -wd1572 -wd734 -wd858 -DDEBUG -inline_debug_info" CXXFLAGSO="$CXXFLAGS -Kc++eh -Krtti -O2 -unroll -w0 -wd424 -wd11" CXXFLAGSPIC="-KPIC" LDFLAGSPIC="-KPIC"