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:
parent
1552fb6228
commit
1460f9f52c
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ struct AbstractNixRepl
|
|||
Bindings * autoArgs;
|
||||
|
||||
AbstractNixRepl(ref<EvalState> state)
|
||||
: state(state)
|
||||
: state(state), autoArgs(nullptr)
|
||||
{ }
|
||||
|
||||
virtual ~AbstractNixRepl()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue