From 13dd928ae18ef9610bc820b7b3e65629addea1d2 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/details/posix/exceptions.cxx | 2 +- odb/details/posix/exceptions.hxx | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'odb/details/posix') diff --git a/odb/details/posix/exceptions.cxx b/odb/details/posix/exceptions.cxx index 0ed0aa3..ecffa4f 100644 --- a/odb/details/posix/exceptions.cxx +++ b/odb/details/posix/exceptions.cxx @@ -9,7 +9,7 @@ namespace odb namespace details { const char* posix_exception:: - what () const throw () + what () const ODB_NOTHROW_NOEXCEPT { return "POSIX API error"; } diff --git a/odb/details/posix/exceptions.hxx b/odb/details/posix/exceptions.hxx index dd78313..7a40ac6 100644 --- a/odb/details/posix/exceptions.hxx +++ b/odb/details/posix/exceptions.hxx @@ -7,6 +7,7 @@ #include +#include // ODB_NOTHROW_NOEXCEPT #include #include @@ -22,7 +23,7 @@ namespace odb code () const {return code_;} virtual const char* - what () const throw (); + what () const ODB_NOTHROW_NOEXCEPT; virtual posix_exception* clone () const; -- cgit v1.1