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

[SVN r48792]
This commit is contained in:
Emil Dotchevski
2014-06-03 01:49:24 +03:00
committed by Peter Dimov
parent 3729ff1493
commit 88d9f3ae64
+1 -1
View File
@@ -24,7 +24,7 @@
#include <boost/detail/workaround.hpp>
#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
#endif