mirror of
https://github.com/boostorg/lexical_cast.git
synced 2025-05-11 21:23:54 +00:00
Merge pull request #59 from Romain-Geissler-1A/fix-warning
Fix -Wdeprecated-copy-with-dtor warnings with clang.
This commit is contained in:
commit
844a4d1640
@ -56,8 +56,10 @@ namespace boost
|
|||||||
"source type value could not be interpreted as target";
|
"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
|
#ifndef BOOST_NO_TYPEID
|
||||||
private:
|
private:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user