forked from boostorg/unordered
s/noexcept(...)/noexcept(noexcept(...))
This commit is contained in:
committed by
Christian Mazakas
parent
8f39001ff0
commit
ead55a8938
@ -360,7 +360,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
void swap(table& x)
|
void swap(table& x)
|
||||||
noexcept(std::declval<super&>().swap(std::declval<super&>()))
|
noexcept(noexcept(std::declval<super&>().swap(std::declval<super&>())))
|
||||||
{
|
{
|
||||||
super::swap(x);
|
super::swap(x);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user