mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-29 19:07:15 +02: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:
@ -121,7 +121,7 @@ namespace boost
|
||||
return *this;
|
||||
}
|
||||
#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())
|
||||
{
|
||||
}
|
||||
@ -504,7 +504,7 @@ namespace boost
|
||||
return *this;
|
||||
}
|
||||
#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())
|
||||
{
|
||||
}
|
||||
|
Reference in New Issue
Block a user