From af8dca04b6a86bdfb0e25379fb508478f4b93fc9 Mon Sep 17 00:00:00 2001 From: Wolfgang Sanyer Date: Tue, 12 Jul 2022 19:59:02 +0000 Subject: [PATCH] Revert "Disable clang warning in order to mitigate protocolbuffers/protobuf#9181" This reverts commit dbe419d0e069df3fedc212d456449f64d0280c76. Since https://github.com/protocolbuffers/protobuf/issues/9181 hase been resolved, this workaround should no longer be needed. --- configure.ac | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 2a628d7cb..261304370 100644 --- a/configure.ac +++ b/configure.ac @@ -43,9 +43,7 @@ AC_ARG_ENABLE([compile-warnings], PICKY_CXXFLAGS="-Wextra -pedantic -Wno-long-long -Weffc++ -Wmissing-declarations" ;; error) - # remove -Wno-c++17-extensions once protocolbuffers/protobuf#9181 is - # resolved - WARNING_CXXFLAGS="-Wall -Werror -Wno-c++17-extensions" + WARNING_CXXFLAGS="-Wall -Werror" PICKY_CXXFLAGS="-Wextra -pedantic -Wno-long-long -Weffc++ -Wmissing-declarations" ;; distcheck)