Skip to content

Commit

Permalink
Merge pull request #191 from ecatmur/deprecated-copy
Browse files Browse the repository at this point in the history
Default empty destructor.
  • Loading branch information
jzmaddock authored Mar 24, 2024
2 parents 4ca037c + 57ccc94 commit 6b78d0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/regex/v5/pattern_except.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class regex_error : public std::runtime_error
, m_position(0)
{
}
~regex_error() noexcept override {}
~regex_error() noexcept override = default;
regex_constants::error_type code()const
{ return m_error_code; }
std::ptrdiff_t position()const
Expand Down

0 comments on commit 6b78d0a

Please sign in to comment.