From f040159f77e518e5eda87a0c092e6c20d87a572b Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Mon, 20 Oct 2014 11:33:48 -0400 Subject: Revert "Drop support for pre-c++11 compilers." The breakage this fixed can be worked around without removing support. This reverts commit 84a13dc576496f1227665259c61f86184f452f51. --- src/libutil/types.hh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/libutil') diff --git a/src/libutil/types.hh b/src/libutil/types.hh index 58e7c8a39cbb..906a959e3079 100644 --- a/src/libutil/types.hh +++ b/src/libutil/types.hh @@ -39,7 +39,8 @@ protected: public: unsigned int status; // exit status BaseError(const FormatOrString & fs, unsigned int status = 1); - const char * what() const noexcept { return err.c_str(); } + ~BaseError() throw () { }; + const char * what() const throw () { return err.c_str(); } const string & msg() const { return err; } const string & prefix() const { return prefix_; } BaseError & addPrefix(const FormatOrString & fs); -- cgit 1.4.1