|
Boost-Commit : |
From: daniel_james_at_[hidden]
Date: 2007-09-14 19:12:19
Author: danieljames
Date: 2007-09-14 19:12:19 EDT (Fri, 14 Sep 2007)
New Revision: 39289
URL: http://svn.boost.org/trac/boost/changeset/39289
Log:
Use the binary float hash algorithm whenever we're compiling for x86.
Text files modified:
branches/hash/boost/functional/detail/hash_float.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: branches/hash/boost/functional/detail/hash_float.hpp
==============================================================================
--- branches/hash/boost/functional/detail/hash_float.hpp (original)
+++ branches/hash/boost/functional/detail/hash_float.hpp 2007-09-14 19:12:19 EDT (Fri, 14 Sep 2007)
@@ -19,7 +19,7 @@
#include <boost/limits.hpp>
#include <boost/assert.hpp>
-#if defined(__CYGWIN__)
+#if (defined(__i386__) || defined(_M_IX86)) && !defined(BOOST_HASH_CROSS_PLATFORM)
# define BOOST_HASH_USE_X86
// STLport
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