From 0bf6fcba47ece4908b8f1f94e5be391cfc927188 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sat, 10 May 2008 13:53:35 +0000 Subject: [PATCH] The unordered containers are failing to compile on Borland. This is a short in the dark at fixing that. [SVN r45262] --- include/boost/unordered_map.hpp | 4 ++-- include/boost/unordered_set.hpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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()) { }