s/noexcept(...)/noexcept(noexcept(...))

This commit is contained in:
joaquintides
2023-03-10 19:12:06 +01:00
committed by Christian Mazakas
parent 8f39001ff0
commit ead55a8938

View File

@ -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);
}