aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/nixexpr.cc
diff options
context:
space:
mode:
authorBen Burdette <bburdette@protonmail.com>2022-05-16 09:20:51 -0600
committerBen Burdette <bburdette@protonmail.com>2022-05-16 09:20:51 -0600
commit667074b5867ffe40e3f1c59bd8e4ebf259f86aaa (patch)
tree6ae4400c5496b74532dd3b1b0fd72a40f6f5e97f /src/libexpr/nixexpr.cc
parent86ba0a702c63b4a8ff79a07f9303318feb330642 (diff)
first whack at passing evalState as an arg to debuggerHook.
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 213cf93fa..a7b7b8aad 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 Error * error, const Env & env, const Expr & expr)> debuggerHook;
+std::function<void(const EvalState & evalState,const Error * error, const Env & env, const Expr & expr)> debuggerHook;
/* Displaying abstract syntax trees. */