aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/eval.hh
diff options
context:
space:
mode:
authorBen Burdette <bburdette@gmail.com>2021-10-11 14:42:29 -0600
committerBen Burdette <bburdette@gmail.com>2021-10-11 14:42:29 -0600
commit2ee1fa4afd69226f16305e792d5110fd36669c6b (patch)
tree5c01ccde7d1f747cbd72a364afddba89d607ff1f /src/libexpr/eval.hh
parentaad27143c67c863bd4886186bdf68f4796ca26c3 (diff)
add nullable Expr argument
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r--src/libexpr/eval.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh
index 8edc17789..553e7861a 100644
--- a/src/libexpr/eval.hh
+++ b/src/libexpr/eval.hh
@@ -23,7 +23,7 @@ enum RepairFlag : bool;
typedef void (* PrimOpFun) (EvalState & state, const Pos & pos, Value * * args, Value & v);
-extern std::function<void(const Error & error, const Env & env)> debuggerHook;
+extern std::function<void(const Error & error, const Env & env, const Expr & expr)> debuggerHook;
struct PrimOp
{