mirror of
https://github.com/boostorg/throw_exception.git
synced 2025-06-29 22:11:09 +02:00
Compare commits
1 Commits
feature/so
...
boost-1.73
Author | SHA1 | Date | |
---|---|---|---|
548084bd4c |
@ -16,13 +16,18 @@ namespace boost { template <class T> class shared_ptr; }
|
|||||||
namespace boost { namespace exception_detail { using boost::shared_ptr; } }
|
namespace boost { namespace exception_detail { using boost::shared_ptr; } }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__GNUC__) && (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
|
#if !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
|
||||||
|
#if __GNUC__*100+__GNUC_MINOR__>301
|
||||||
#pragma GCC system_header
|
#pragma GCC system_header
|
||||||
#endif
|
#endif
|
||||||
#if defined(_MSC_VER) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
|
#ifdef __clang__
|
||||||
|
#pragma clang system_header
|
||||||
|
#endif
|
||||||
|
#ifdef _MSC_VER
|
||||||
#pragma warning(push,1)
|
#pragma warning(push,1)
|
||||||
#pragma warning(disable: 4265)
|
#pragma warning(disable: 4265)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
boost
|
boost
|
||||||
|
Reference in New Issue
Block a user