From d1ec3f91500e3c2850efa9c1c00128114f633b1d Mon Sep 17 00:00:00 2001 From: wolf Date: Thu, 20 Feb 2003 16:06:48 +0000 Subject: [PATCH] Disable one warning for cxx. git-svn-id: https://svn.dealii.org/trunk@7200 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/aclocal.m4 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- 2.39.5