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'.

[SVN r45061]
This commit is contained in:
Daniel James
2008-05-03 12:07:15 +00:00
parent 0a0572b983
commit 814653754f

View File

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