Use BOOST_NOEXCEPT_OR_NOTHROW in public headers to prepare for C++20.

This commit is contained in:
Romain Geissler
2018-11-09 14:55:34 +00:00
parent 04f0847af4
commit 456da93897

View File

@ -47,7 +47,7 @@ class bad_weak_ptr: public std::exception
{
public:
virtual char const * what() const throw()
virtual char const * what() const BOOST_NOEXCEPT_OR_NOTHROW
{
return "tr1::bad_weak_ptr";
}