From 500550e39e1ab9a3cd97ac2f1902ff5386ff9211 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 15 Jun 2016 18:50:51 +0200 Subject: Get rid of C++11 deprecation warnings for auto_ptr, exception specs In particular, std::auto_ptr is no longer mapped in C++11. --- odb/boost/date-time/exceptions.hxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'odb/boost/date-time/exceptions.hxx') diff --git a/odb/boost/date-time/exceptions.hxx b/odb/boost/date-time/exceptions.hxx index b180579..2e3b408 100644 --- a/odb/boost/date-time/exceptions.hxx +++ b/odb/boost/date-time/exceptions.hxx @@ -7,6 +7,8 @@ #include +#include // ODB_NOTHROW_NOEXCEPT + #include #include @@ -19,7 +21,7 @@ namespace odb struct LIBODB_BOOST_EXPORT special_value: exception { virtual const char* - what () const throw (); + what () const ODB_NOTHROW_NOEXCEPT; virtual special_value* clone () const; @@ -28,7 +30,7 @@ namespace odb struct LIBODB_BOOST_EXPORT value_out_of_range: exception { virtual const char* - what () const throw (); + what () const ODB_NOTHROW_NOEXCEPT; virtual value_out_of_range* clone () const; -- cgit v1.1