aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/nixexpr.cc
diff options
context:
space:
mode:
authorBen Burdette <bburdette@protonmail.com>2022-05-19 12:44:40 -0600
committerBen Burdette <bburdette@protonmail.com>2022-05-19 12:44:40 -0600
commit7ddef73d026d79adc0c4f3fd1518d88d1331c38c (patch)
tree791f8f891f09f90712d91c94ae4dad15ec114871 /src/libexpr/nixexpr.cc
parentf9cdb6af8dea863b325210d59a1f2e865a06010e (diff)
de-const evalState exceptions
Diffstat (limited to 'src/libexpr/nixexpr.cc')
-rw-r--r--src/libexpr/nixexpr.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/nixexpr.cc b/src/libexpr/nixexpr.cc
index cb5e1c3f2..21b71d7c9 100644
--- a/src/libexpr/nixexpr.cc
+++ b/src/libexpr/nixexpr.cc
@@ -10,7 +10,7 @@ namespace nix {
/* Launch the nix debugger */
-std::function<void(const EvalState & evalState,const Error * error, const Env & env, const Expr & expr)> debuggerHook;
+std::function<void(EvalState & evalState,const Error * error, const Env & env, const Expr & expr)> debuggerHook;
/* Displaying abstract syntax trees. */