Disable Boost.Exception for Borland 5.8.x as well.

[SVN r45268]
This commit is contained in:
Peter Dimov
2008-05-10 19:55:16 +00:00
parent ca22b61545
commit cb55993dbb

View File

@ -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