diff options
author | Ben Burdette <bburdette@protonmail.com> | 2022-05-19 12:44:40 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@protonmail.com> | 2022-05-19 12:44:40 -0600 |
commit | 7ddef73d026d79adc0c4f3fd1518d88d1331c38c (patch) | |
tree | 791f8f891f09f90712d91c94ae4dad15ec114871 /src/libexpr/nixexpr.hh | |
parent | f9cdb6af8dea863b325210d59a1f2e865a06010e (diff) |
de-const evalState exceptions
Diffstat (limited to 'src/libexpr/nixexpr.hh')
-rw-r--r-- | src/libexpr/nixexpr.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/nixexpr.hh b/src/libexpr/nixexpr.hh index 80b6afa3e..fdafb1711 100644 --- a/src/libexpr/nixexpr.hh +++ b/src/libexpr/nixexpr.hh @@ -22,7 +22,7 @@ MakeError(UndefinedVarError, Error); MakeError(MissingArgumentError, EvalError); MakeError(RestrictedPathError, Error); -extern std::function<void(const EvalState & evalState, const Error * error, const Env & env, const Expr & expr)> debuggerHook; +extern std::function<void(EvalState & evalState, const Error * error, const Env & env, const Expr & expr)> debuggerHook; /* Position objects. */ |