diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index 01c7ca4441..543266b22a 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -44,6 +44,7 @@ struct InvalidPathError : EvalError Path path; InvalidPathError(const Path & path) : EvalError(format("path `%1%' is not valid") % path), path(path) {}; + ~InvalidPathError() throw () { }; }; diff --git a/src/libutil/types.hh b/src/libutil/types.hh index 4b5ce9a78c..906a959e30 100644 --- a/src/libutil/types.hh +++ b/src/libutil/types.hh @@ -41,8 +41,8 @@ public: BaseError(const FormatOrString & fs, unsigned int status = 1); ~BaseError() throw () { }; const char * what() const throw () { return err.c_str(); } - const string & msg() const throw () { return err; } - const string & prefix() const throw () { return prefix_; } + const string & msg() const { return err; } + const string & prefix() const { return prefix_; } BaseError & addPrefix(const FormatOrString & fs); };