mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-29 10:57:16 +02:00
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)
|
||||
noexcept(std::declval<super&>().swap(std::declval<super&>()))
|
||||
noexcept(noexcept(std::declval<super&>().swap(std::declval<super&>())))
|
||||
{
|
||||
super::swap(x);
|
||||
}
|
||||
|
Reference in New Issue
Block a user