$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: daniel_james_at_[hidden]
Date: 2008-05-03 08:07:15
Author: danieljames
Date: 2008-05-03 08:07:15 EDT (Sat, 03 May 2008)
New Revision: 45061
URL: http://svn.boost.org/trac/boost/changeset/45061
Log:
Old versions on the intel compiler (and I assume other EDG based compilers) don't seem to be able to deal with the SFINAE code used in 'has_move'.
Text files modified:
trunk/boost/unordered/detail/config.hpp | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
Modified: trunk/boost/unordered/detail/config.hpp
==============================================================================
--- trunk/boost/unordered/detail/config.hpp (original)
+++ trunk/boost/unordered/detail/config.hpp 2008-05-03 08:07:15 EDT (Sat, 03 May 2008)
@@ -13,6 +13,9 @@
#elif defined(__GNUC__) && \
(__GNUC__ < 3 || __GNUC__ == 3 && __GNUC_MINOR__ <= 3)
# define BOOST_UNORDERED_NO_HAS_MOVE_ASSIGN
+#elif BOOST_WORKAROUND(BOOST_INTEL, < 900) || \
+ BOOST_WORKAROUND(__EDG_VERSION__, < 304)
+# define BOOST_UNORDERED_NO_HAS_MOVE_ASSIGN
#endif
#endif