From 2cde7922b22bfd73c06f0c6ace27653d1fe8bd95 Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Tue, 16 Sep 2008 04:07:43 +0000 Subject: [PATCH] Hopefully properly disabling boost exception integration in throw_exception.hpp for Borland <= 5.9.3 [SVN r48792] --- include/boost/throw_exception.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/throw_exception.hpp b/include/boost/throw_exception.hpp index 018eb2a..5d00854 100644 --- a/include/boost/throw_exception.hpp +++ b/include/boost/throw_exception.hpp @@ -24,7 +24,7 @@ #include #include -#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