diff options
Diffstat (limited to 'src/libexpr')
-rw-r--r-- | src/libexpr/primops.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index 01c7ca444119..543266b22aa1 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 () { }; }; |