Skip to content

Commit

Permalink
Remove -Wpedantic
Browse files Browse the repository at this point in the history
  • Loading branch information
ldionne committed Nov 10, 2023
1 parent 9db1e76 commit 83346ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ function(boost_hana_set_test_properties target)
if (NOT MSVC)
setflag(BOOST_HANA_HAS_FDIAGNOSTICS_COLOR -fdiagnostics-color)
setflag(BOOST_HANA_HAS_FTEMPLATE_BACKTRACE_LIMIT -ftemplate-backtrace-limit=0)
setflag(BOOST_HANA_HAS_PEDANTIC -pedantic)
setflag(BOOST_HANA_HAS_WALL -Wall)
setflag(BOOST_HANA_HAS_WERROR -Werror)
setflag(BOOST_HANA_HAS_WEXTRA -Wextra)
Expand Down
4 changes: 2 additions & 2 deletions test/Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ project boost/hana :

rule hana-all-tests {
local toolset =
<toolset>clang:<cxxflags>"-std=c++1y -pedantic -Wall -Wextra"
<toolset>darwin:<cxxflags>"-std=c++1y -pedantic -Wall -Wextra"
<toolset>clang:<cxxflags>"-std=c++1y -Wall -Wextra"
<toolset>darwin:<cxxflags>"-std=c++1y -Wall -Wextra"
[ requires
cxx14_constexpr
cxx14_decltype_auto
Expand Down

0 comments on commit 83346ca

Please sign in to comment.