mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-29 19:07:15 +02:00
fixed unqualified swap call
This commit is contained in:
committed by
Christian Mazakas
parent
ef34ec5e87
commit
6a8d7857e2
@ -1310,7 +1310,8 @@ public:
|
||||
table_core{std::move(x.h()),std::move(x.pred()),al_}
|
||||
{
|
||||
if(al()==x.al()){
|
||||
std::swap(arrays,x.arrays);
|
||||
using std::swap;
|
||||
swap(arrays,x.arrays);
|
||||
swap(size_ctrl,x.size_ctrl);
|
||||
}
|
||||
else{
|
||||
|
Reference in New Issue
Block a user