mirror of
https://github.com/boostorg/exception.git
synced 2025-07-27 19:17:18 +02:00
Added #pragma clang system_header
This commit is contained in:
@ -5,12 +5,18 @@
|
|||||||
|
|
||||||
#ifndef BOOST_EXCEPTION_7E83C166200811DE885E826156D89593
|
#ifndef BOOST_EXCEPTION_7E83C166200811DE885E826156D89593
|
||||||
#define BOOST_EXCEPTION_7E83C166200811DE885E826156D89593
|
#define BOOST_EXCEPTION_7E83C166200811DE885E826156D89593
|
||||||
#if (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
|
|
||||||
|
#ifndef 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)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
boost
|
boost
|
||||||
|
@ -5,12 +5,18 @@
|
|||||||
|
|
||||||
#ifndef BOOST_EXCEPTION_81522C0EB56511DFAB613DB0DFD72085
|
#ifndef BOOST_EXCEPTION_81522C0EB56511DFAB613DB0DFD72085
|
||||||
#define BOOST_EXCEPTION_81522C0EB56511DFAB613DB0DFD72085
|
#define BOOST_EXCEPTION_81522C0EB56511DFAB613DB0DFD72085
|
||||||
#if (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
|
|
||||||
|
#ifndef 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)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef BOOST_NO_EXCEPTIONS
|
#ifdef BOOST_NO_EXCEPTIONS
|
||||||
# error This header requires exception handling to be enabled.
|
# error This header requires exception handling to be enabled.
|
||||||
|
@ -13,12 +13,17 @@
|
|||||||
#include <utility>
|
#include <utility>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#if (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
|
#ifndef 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)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
boost
|
boost
|
||||||
|
@ -25,12 +25,17 @@
|
|||||||
#include <ios>
|
#include <ios>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#if (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
|
#ifndef 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)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
boost
|
boost
|
||||||
|
@ -8,12 +8,17 @@
|
|||||||
|
|
||||||
#include <ostream>
|
#include <ostream>
|
||||||
|
|
||||||
#if (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
|
#ifndef 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)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
boost
|
boost
|
||||||
|
@ -13,12 +13,17 @@
|
|||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
|
|
||||||
#if (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
|
#ifndef 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)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
boost
|
boost
|
||||||
|
@ -12,12 +12,17 @@
|
|||||||
#include <boost/current_function.hpp>
|
#include <boost/current_function.hpp>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#if (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
|
#ifndef 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)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
boost
|
boost
|
||||||
|
@ -20,12 +20,17 @@
|
|||||||
#include <boost/exception/current_exception_cast.hpp>
|
#include <boost/exception/current_exception_cast.hpp>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
|
#ifndef 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)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef BOOST_NO_EXCEPTIONS
|
#ifndef BOOST_NO_EXCEPTIONS
|
||||||
namespace
|
namespace
|
||||||
|
@ -10,13 +10,18 @@
|
|||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#if (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
|
#ifndef 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:4996)
|
#pragma warning(disable:4996)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
boost
|
boost
|
||||||
|
@ -13,12 +13,17 @@
|
|||||||
#include <boost/exception/detail/shared_ptr.hpp>
|
#include <boost/exception/detail/shared_ptr.hpp>
|
||||||
#include <boost/assert.hpp>
|
#include <boost/assert.hpp>
|
||||||
|
|
||||||
#if (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
|
#ifndef 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)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
boost
|
boost
|
||||||
|
@ -13,12 +13,17 @@
|
|||||||
#include <boost/exception/detail/shared_ptr.hpp>
|
#include <boost/exception/detail/shared_ptr.hpp>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
|
||||||
#if (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
|
#ifndef 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)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
boost
|
boost
|
||||||
|
@ -9,12 +9,17 @@
|
|||||||
#include <boost/exception/info.hpp>
|
#include <boost/exception/info.hpp>
|
||||||
#include <boost/tuple/tuple.hpp>
|
#include <boost/tuple/tuple.hpp>
|
||||||
|
|
||||||
#if (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
|
#ifndef 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)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
boost
|
boost
|
||||||
|
@ -10,12 +10,17 @@
|
|||||||
#include <boost/exception/detail/is_output_streamable.hpp>
|
#include <boost/exception/detail/is_output_streamable.hpp>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
#if (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
|
#ifndef 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)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
boost
|
boost
|
||||||
|
@ -10,12 +10,17 @@
|
|||||||
#include <boost/exception/detail/object_hex_dump.hpp>
|
#include <boost/exception/detail/object_hex_dump.hpp>
|
||||||
#include <boost/assert.hpp>
|
#include <boost/assert.hpp>
|
||||||
|
|
||||||
#if (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
|
#ifndef 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)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
boost
|
boost
|
||||||
|
Reference in New Issue
Block a user