Disable clang warning in order to mitigate protocolbuffers/protobuf#9181

Signed-off-by: Wolfgang E. Sanyer <WolfgangESanyer@gmail.com>
This commit is contained in:
Wolfgang E. Sanyer
2022-01-29 20:58:47 -05:00
committed by Alex Chernyakhovsky
parent 7b534bacb4
commit dbe419d0e0
+3 -1
View File
@@ -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)