Merge pull request #59 from Romain-Geissler-1A/fix-warning

Fix -Wdeprecated-copy-with-dtor warnings with clang.
This commit is contained in:
Antony Polukhin 2023-08-12 10:58:56 +03:00 committed by GitHub
commit 844a4d1640
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,8 +56,10 @@ namespace boost
"source type value could not be interpreted as target";
}
~bad_lexical_cast() BOOST_NOEXCEPT_OR_NOTHROW BOOST_OVERRIDE
{}
~bad_lexical_cast() BOOST_NOEXCEPT_OR_NOTHROW BOOST_OVERRIDE = default;
bad_lexical_cast(const bad_lexical_cast&) BOOST_NOEXCEPT_OR_NOTHROW = default;
bad_lexical_cast& operator=(const bad_lexical_cast&) BOOST_NOEXCEPT_OR_NOTHROW = default;
#ifndef BOOST_NO_TYPEID
private: