Skip to content

Commit

Permalink
Disable clang warning for c++17-extensions
Browse files Browse the repository at this point in the history
This warning is being triggered by code in the protobuf library. See
issue 9181 at https://github.com/protocolbuffers/protobuf for more
information

Signed-off-by: Wolfgang E. Sanyer <[email protected]>
  • Loading branch information
ezzieyguywuf committed Jan 30, 2022
1 parent cabb6ea commit 42ee2fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ AC_ARG_ENABLE([compile-warnings],
PICKY_CXXFLAGS="-Wextra -pedantic -Wno-long-long -Weffc++ -Wmissing-declarations"
;;
error)
WARNING_CXXFLAGS="-Wall -Werror"
WARNING_CXXFLAGS="-Wall -Werror -Wno-c++17-extensions"
PICKY_CXXFLAGS="-Wextra -pedantic -Wno-long-long -Weffc++ -Wmissing-declarations"
;;
distcheck)
Expand Down

0 comments on commit 42ee2fc

Please sign in to comment.