Skip to content

Commit

Permalink
Merge pull request #206 from boostorg/remove_nothrow
Browse files Browse the repository at this point in the history
Remove throw() specification.
  • Loading branch information
jzmaddock authored Mar 24, 2024
2 parents 6b78d0a + ecd5c20 commit b130106
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/regex/v5/basic_regex.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ class basic_regex : public regbase
}
//
// swap:
void swap(basic_regex& that)throw()
void swap(basic_regex& that)noexcept
{
m_pimpl.swap(that.m_pimpl);
}
Expand Down

0 comments on commit b130106

Please sign in to comment.