mirror of
https://github.com/boostorg/exception.git
synced 2025-07-17 14:32:05 +02:00
Fixes for old compilers.
[SVN r45069]
This commit is contained in:
@ -21,6 +21,15 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
#include <boost/config.hpp>
|
#include <boost/config.hpp>
|
||||||
|
#include <boost/detail/workaround.hpp>
|
||||||
|
|
||||||
|
#if !defined( BOOST_EXCEPTION_DISABLE ) && defined( __BORLANDC__ ) && BOOST_WORKAROUND( __BORLANDC__, <= 0x551 )
|
||||||
|
# define BOOST_EXCEPTION_DISABLE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined( BOOST_EXCEPTION_DISABLE ) && defined( BOOST_MSVC ) && BOOST_WORKAROUND( BOOST_MSVC, < 1310 )
|
||||||
|
# define BOOST_EXCEPTION_DISABLE
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef BOOST_NO_EXCEPTIONS
|
#ifdef BOOST_NO_EXCEPTIONS
|
||||||
# include <exception>
|
# include <exception>
|
||||||
|
Reference in New Issue
Block a user