forked from boostorg/unordered
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_}
|
table_core{std::move(x.h()),std::move(x.pred()),al_}
|
||||||
{
|
{
|
||||||
if(al()==x.al()){
|
if(al()==x.al()){
|
||||||
std::swap(arrays,x.arrays);
|
using std::swap;
|
||||||
|
swap(arrays,x.arrays);
|
||||||
swap(size_ctrl,x.size_ctrl);
|
swap(size_ctrl,x.size_ctrl);
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
|
Reference in New Issue
Block a user