Merge pull request #206 from boostorg/remove_nothrow

Remove throw() specification.
This commit is contained in:
jzmaddock
2024-03-24 17:00:44 +00:00
committed by GitHub

View File

@ -488,7 +488,7 @@ public:
}
//
// swap:
void swap(basic_regex& that)throw()
void swap(basic_regex& that)noexcept
{
m_pimpl.swap(that.m_pimpl);
}