diff --git a/include/boost/unordered_map.hpp b/include/boost/unordered_map.hpp index b233988c..22119804 100644 --- a/include/boost/unordered_map.hpp +++ b/include/boost/unordered_map.hpp @@ -121,7 +121,7 @@ namespace boost return *this; } #else - unordered_map(boost::unordered_detail::move_from other) + unordered_map(boost::unordered_detail::move_from > other) : base(other.base, boost::unordered_detail::move_tag()) { } @@ -504,7 +504,7 @@ namespace boost return *this; } #else - unordered_multimap(boost::unordered_detail::move_from other) + unordered_multimap(boost::unordered_detail::move_from > other) : base(other.base, boost::unordered_detail::move_tag()) { } diff --git a/include/boost/unordered_set.hpp b/include/boost/unordered_set.hpp index 01954af9..b3c645ff 100644 --- a/include/boost/unordered_set.hpp +++ b/include/boost/unordered_set.hpp @@ -118,7 +118,7 @@ namespace boost return *this; } #else - unordered_set(boost::unordered_detail::move_from other) + unordered_set(boost::unordered_detail::move_from > other) : base(other.base, boost::unordered_detail::move_tag()) { } @@ -473,7 +473,7 @@ namespace boost return *this; } #else - unordered_multiset(boost::unordered_detail::move_from other) + unordered_multiset(boost::unordered_detail::move_from > other) : base(other.base, boost::unordered_detail::move_tag()) { }