mirror of
https://github.com/boostorg/throw_exception.git
synced 2025-06-25 03:51:35 +02:00
Avoid -Wundef warning
This commit is contained in:
@ -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__
|
||||
|
Reference in New Issue
Block a user