Merge pull request #191 from ecatmur/deprecated-copy

Default empty destructor.
This commit is contained in:
jzmaddock
2024-03-24 16:47:49 +00:00
committed by GitHub

View File

@ -52,7 +52,7 @@ public:
, 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