From 44fde85b2496750b78939247d1d19a67c5b3dc71 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 14 Nov 2016 15:24:14 +0200 Subject: C++11-compatibility fixes and improvements --- cutl/fs/path.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cutl/fs/path.hxx') diff --git a/cutl/fs/path.hxx b/cutl/fs/path.hxx index d7d2c0c..b1cf92d 100644 --- a/cutl/fs/path.hxx +++ b/cutl/fs/path.hxx @@ -10,6 +10,7 @@ #include +#include #include namespace cutl @@ -121,7 +122,7 @@ namespace cutl { public: virtual char const* - what () const throw (); + what () const LIBCUTL_NOTHROW_NOEXCEPT; }; template @@ -132,7 +133,6 @@ namespace cutl invalid_basic_path (C const* p): path_ (p) {} invalid_basic_path (string_type const& p): path_ (p) {} - ~invalid_basic_path () throw () {} string_type const& path () const -- cgit v1.1