Skip to content

Commit

Permalink
Disable Wstringop-xxx false positives also in newer GCCs
Browse files Browse the repository at this point in the history
  • Loading branch information
igaztanaga committed Jun 2, 2024
1 parent 7ec7de9 commit 4142050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/container/detail/copy_move_algo.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# pragma GCC diagnostic ignored "-Wstringop-overflow"
# endif
//GCC 12 seems a bit confused about array access error with small_vector
# if defined(BOOST_GCC) && ((BOOST_GCC >= 110000) && (BOOST_GCC < 130000))
# if defined(BOOST_GCC) && (BOOST_GCC >= 110000)
# pragma GCC diagnostic ignored "-Wstringop-overread"
# pragma GCC diagnostic ignored "-Wstringop-overflow"
# endif
Expand Down

0 comments on commit 4142050

Please sign in to comment.