diff --git a/include/boost/unordered/detail/move.hpp b/include/boost/unordered/detail/move.hpp index e3407e04..1376f35b 100644 --- a/include/boost/unordered/detail/move.hpp +++ b/include/boost/unordered/detail/move.hpp @@ -69,14 +69,14 @@ class test_can_convert_anything { }; /*************************************************************************************************/ /* - REVISIT (sparent@adobe.com): This is a work around for Boost 1.34.1 and VC++ 2008 where - boost::is_convertible fails to compile. + REVISIT (sparent@adobe.com): This is a work around for Boost 1.34.1 and VC++ 2008 where + boost::is_convertible fails to compile. */ template struct is_convertible : boost::mpl::or_< - boost::is_same, - boost::is_convertible + boost::is_same, + boost::is_convertible > { }; /*************************************************************************************************/