1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-24 13:51:16 +02:00

Fix uninitialized variable in repl.hh

This commit is contained in:
Farid Zakaria 2025-05-27 10:06:36 -07:00
parent 1552fb6228
commit 1460f9f52c

View file

@ -11,7 +11,7 @@ struct AbstractNixRepl
Bindings * autoArgs;
AbstractNixRepl(ref<EvalState> state)
: state(state)
: state(state), autoArgs(nullptr)
{ }
virtual ~AbstractNixRepl()