Boost logo

Boost-Commit :

From: pdimov_at_[hidden]
Date: 2008-05-10 15:55:17


Author: pdimov
Date: 2008-05-10 15:55:16 EDT (Sat, 10 May 2008)
New Revision: 45268
URL: http://svn.boost.org/trac/boost/changeset/45268

Log:
Disable Boost.Exception for Borland 5.8.x as well.
Text files modified:
   trunk/boost/throw_exception.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/boost/throw_exception.hpp
==============================================================================
--- trunk/boost/throw_exception.hpp (original)
+++ trunk/boost/throw_exception.hpp 2008-05-10 15:55:16 EDT (Sat, 10 May 2008)
@@ -24,7 +24,7 @@
 #include <boost/detail/workaround.hpp>
 #include <exception>
 
-#if !defined( BOOST_EXCEPTION_DISABLE ) && defined( __BORLANDC__ ) && BOOST_WORKAROUND( __BORLANDC__, <= 0x551 )
+#if !defined( BOOST_EXCEPTION_DISABLE ) && defined( __BORLANDC__ ) && BOOST_WORKAROUND( __BORLANDC__, < 0x590 )
 # define BOOST_EXCEPTION_DISABLE
 #endif
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk