Boost logo

Boost-Commit :

From: daniel_james_at_[hidden]
Date: 2008-01-10 07:13:32


Author: danieljames
Date: 2008-01-10 07:13:32 EST (Thu, 10 Jan 2008)
New Revision: 42652
URL: http://svn.boost.org/trac/boost/changeset/42652

Log:
Activate explicit conversion to bool for versions of Borland up to 5.8.2
Text files modified:
   branches/unordered/trunk/boost/unordered/detail/hash_table.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: branches/unordered/trunk/boost/unordered/detail/hash_table.hpp
==============================================================================
--- branches/unordered/trunk/boost/unordered/detail/hash_table.hpp (original)
+++ branches/unordered/trunk/boost/unordered/detail/hash_table.hpp 2008-01-10 07:13:32 EST (Thu, 10 Jan 2008)
@@ -32,7 +32,7 @@
 
 #include <boost/mpl/aux_/config/eti.hpp>
 
-#if BOOST_WORKAROUND(__BORLANDC__, <= 0x0551)
+#if BOOST_WORKAROUND(__BORLANDC__, <= 0x0582)
 #define BOOST_UNORDERED_BORLAND_BOOL(x) (bool)(x)
 #else
 #define BOOST_UNORDERED_BORLAND_BOOL(x) x


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