mirror of
https://github.com/boostorg/unordered.git
synced 2025-05-12 14:01:43 +00:00
The unordered containers are failing to compile on Borland. This is a short in
the dark at fixing that. [SVN r45262]
This commit is contained in:
parent
cdbb3f39e0
commit
0bf6fcba47
@ -121,7 +121,7 @@ namespace boost
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
unordered_map(boost::unordered_detail::move_from<unordered_map> other)
|
unordered_map(boost::unordered_detail::move_from<unordered_map<Key, T, Hash, Pred, Alloc> > other)
|
||||||
: base(other.base, boost::unordered_detail::move_tag())
|
: base(other.base, boost::unordered_detail::move_tag())
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
@ -504,7 +504,7 @@ namespace boost
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
unordered_multimap(boost::unordered_detail::move_from<unordered_multimap> other)
|
unordered_multimap(boost::unordered_detail::move_from<unordered_multimap<Key, T, Hash, Pred, Alloc> > other)
|
||||||
: base(other.base, boost::unordered_detail::move_tag())
|
: base(other.base, boost::unordered_detail::move_tag())
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -118,7 +118,7 @@ namespace boost
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
unordered_set(boost::unordered_detail::move_from<unordered_set> other)
|
unordered_set(boost::unordered_detail::move_from<unordered_set<Value, Hash, Pred, Alloc> > other)
|
||||||
: base(other.base, boost::unordered_detail::move_tag())
|
: base(other.base, boost::unordered_detail::move_tag())
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
@ -473,7 +473,7 @@ namespace boost
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
unordered_multiset(boost::unordered_detail::move_from<unordered_multiset> other)
|
unordered_multiset(boost::unordered_detail::move_from<unordered_multiset<Value, Hash, Pred, Alloc> > other)
|
||||||
: base(other.base, boost::unordered_detail::move_tag())
|
: base(other.base, boost::unordered_detail::move_tag())
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user