From 88c20b78e4e30590494a9e33b1a67482fbd85726 Mon Sep 17 00:00:00 2001 From: "Wolfgang E. Sanyer" Date: Sat, 29 Jan 2022 20:58:47 -0500 Subject: [PATCH] Disable clang warning in order to mitigate protocolbuffers/protobuf#9181 Signed-off-by: Wolfgang E. Sanyer --- configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index d4cb1f332..26a37646a 100644 --- a/configure.ac +++ b/configure.ac @@ -42,7 +42,9 @@ AC_ARG_ENABLE([compile-warnings], PICKY_CXXFLAGS="-Wextra -pedantic -Wno-long-long -Weffc++ -Wmissing-declarations" ;; error) - WARNING_CXXFLAGS="-Wall -Werror" + # remove -Wno-c++17-extensions once protocolbuffers/protobuf#9181 is + # resolved + WARNING_CXXFLAGS="-Wall -Werror -Wno-c++17-extensions" PICKY_CXXFLAGS="-Wextra -pedantic -Wno-long-long -Weffc++ -Wmissing-declarations" ;; distcheck)