Skip to content

Commit

Permalink
Avoid -Wundef warning
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Jan 6, 2024
1 parent bc58e33 commit bdf60d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/exception/exception.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace boost { namespace exception_detail { using boost::shared_ptr; } }
#endif

#if !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
#if __GNUC__*100+__GNUC_MINOR__>301
#if defined(__GNUC__) && __GNUC__*100+__GNUC_MINOR__>301
#pragma GCC system_header
#endif
#ifdef __clang__
Expand Down

0 comments on commit bdf60d3

Please sign in to comment.