From: Wolfgang Bangerth Date: Thu, 20 Feb 2003 16:06:48 +0000 (+0000) Subject: Disable one warning for cxx. X-Git-Tag: v8.0.0~16875 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1957fbfd6f53086d8772626e6f8adbb17c4bb2d0;p=dealii.git Disable one warning for cxx. git-svn-id: https://svn.dealii.org/trunk@7200 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/aclocal.m4 b/deal.II/aclocal.m4 index 2d26bc16cb..b8997ce327 100644 --- a/deal.II/aclocal.m4 +++ b/deal.II/aclocal.m4 @@ -411,6 +411,8 @@ AC_DEFUN(DEAL_II_SET_CXX_FLAGS, dnl compaq_cxx) dnl Disable some warning messages: + dnl #11: ` unrecognized preprocessing directive" (we use + dnl #warning at one place) dnl #175: `subscript out of range' (detected when instantiating a dnl template and looking at the indices of an array of dnl template dependent size, this error is triggered in a @@ -452,7 +454,7 @@ AC_DEFUN(DEAL_II_SET_CXX_FLAGS, dnl CXXFLAGSG="$CXXFLAGS -model ansi -std strict_ansi -w1 -msg_display_number -timplicit_local -DDEBUG" CXXFLAGSO="$CXXFLAGS -model ansi -std strict_ansi -w2 -msg_display_number -timplicit_local -fast" - for i in 175 236 237 381 487 1136 1156 111 1182 265 450 ; do + for i in 11 175 236 237 381 487 1136 1156 111 1182 265 450 ; do CXXFLAGSG="$CXXFLAGSG -msg_disable $i" CXXFLAGSO="$CXXFLAGSO -msg_disable $i" done