Hopefully properly disabling boost exception integration in throw_exception.hpp for Borland <= 5.9.3

[SVN r48792]
This commit is contained in:
Emil Dotchevski
2008-09-16 04:07:43 +00:00
parent da0c1fa744
commit 2cde7922b2

View File

@ -24,7 +24,7 @@
#include <boost/detail/workaround.hpp> #include <boost/detail/workaround.hpp>
#include <exception> #include <exception>
#if !defined( BOOST_EXCEPTION_DISABLE ) && defined( __BORLANDC__ ) && BOOST_WORKAROUND( __BORLANDC__, < 0x590 ) #if !defined( BOOST_EXCEPTION_DISABLE ) && defined( __BORLANDC__ ) && BOOST_WORKAROUND( __BORLANDC__, <= 0x593 )
# define BOOST_EXCEPTION_DISABLE # define BOOST_EXCEPTION_DISABLE
#endif #endif