From 0d076286bd2bb1f30b65c0236d4560bb4556ff01 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 3 Jul 2001 07:28:21 +0000 Subject: [PATCH] Further refine warning level for Compaq's cxx. git-svn-id: https://svn.dealii.org/trunk@4798 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/configure.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/deal.II/configure.in b/deal.II/configure.in index 36cc1df5a5..133a496700 100644 --- a/deal.II/configure.in +++ b/deal.II/configure.in @@ -290,8 +290,11 @@ else dnl #1136:`conversion to integral type of smaller size could lose data' dnl (occurs rather often in addition of int and x.size(), because the latter dnl is size_t=long unsigned int on Alpha) + dnl #1182:`statement either is unreachable or causes unreachable code' + dnl (happens in switch(dim) clauses for other dimensions than + dnl the present one) - CXXFLAGSG="$CXXFLAGS -model ansi -std strict_ansi -w0 -msg_disable 236 -msg_disable 381 -msg_disable 487 -msg_disable 1136 -DDEBUG" + CXXFLAGSG="$CXXFLAGS -model ansi -std strict_ansi -w0 -msg_disable 236 -msg_disable 381 -msg_disable 487 -msg_disable 1136 -msg_disable 1182 -DDEBUG" CXXFLAGSO="$CXXFLAGS -model ansi -std strict_ansi -w2 -accept restrict_keyword -fast" dnl if necessary: -shared, -pthread dnl Should one use -compress? -distinguish_nested_enums? -nousing_std? -- 2.39.5