diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-07-09T10·14+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-07-09T10·14+0200 |
commit | 0e5d0c15430cf82861a1ae213cbccff065f71107 (patch) | |
tree | 186a3d3eb7704a21ef265bee4a49785d9885b413 /src/libutil/types.hh | |
parent | beac05c206a801be6f83b4eaaffe75c30eeb7d37 (diff) |
Fix compilation error on some versions of GCC
src/libexpr/primops.cc:42:8: error: looser throw specifier for 'virtual nix::InvalidPathError::~InvalidPathError()' src/libexpr/nixexpr.hh:12:1: error: overriding 'virtual nix::EvalError::~EvalError() noexcept (true)' http://hydra.nixos.org/build/12385750
Diffstat (limited to 'src/libutil/types.hh')
-rw-r--r-- | src/libutil/types.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libutil/types.hh b/src/libutil/types.hh index 4b5ce9a78c48..906a959e3079 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); }; |