From 4076bdecbce2a93e8254eb09cb01460ce693d906 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Mon, 30 Mar 2009 12:12:20 +0000 Subject: [PATCH] Remove -Wno-parentheses switch for g++ 4.3. svn-id: r39763 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 321c254db54..2bd998cc196 100755 --- a/configure +++ b/configure @@ -1907,7 +1907,7 @@ if test "$_cxx_major" -ge "3" ; then fi; if test "$_cxx_major" -ge "4" && test "$_cxx_minor" -ge "3" ; then - CXXFLAGS="$CXXFLAGS -Wno-parentheses -Wno-empty-body" + CXXFLAGS="$CXXFLAGS -Wno-empty-body" else CXXFLAGS="$CXXFLAGS -Wconversion" fi;