diff options
author | tomberek <tomberek@users.noreply.github.com> | 2022-05-20 01:28:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-20 01:28:20 -0400 |
commit | 7d7e00272a2f47f68b3809296992db84ae871e09 (patch) | |
tree | c798726a747720a57f1869c068b4684b4b3150b2 | |
parent | f21dec5befc9ee273a5210dec322d30c3c3be595 (diff) |
Apply suggestions from code review
Style fixes from @edolstra
Co-authored-by: Eelco Dolstra <edolstra@gmail.com>
-rw-r--r-- | src/nix/repl.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nix/repl.cc b/src/nix/repl.cc index 18cdb3580..6c05daa11 100644 --- a/src/nix/repl.cc +++ b/src/nix/repl.cc @@ -97,7 +97,7 @@ std::string removeWhitespace(std::string s) } -NixRepl::NixRepl(const Strings & searchPath, nix::ref<Store> store,ref<EvalState> state, +NixRepl::NixRepl(const Strings & searchPath, nix::ref<Store> store, ref<EvalState> state, std::function<NixRepl::AnnotatedValues()> getValues) : state(state) , getValues(getValues) @@ -691,8 +691,8 @@ void NixRepl::reloadFiles() loadFile(i); } - for (auto & [i,what] : getValues()) { - notice("Loading Installable '%1%'...", what); + for (auto & [i, what] : getValues()) { + notice("Loading installable '%1%'...", what); addAttrsToScope(*i); } } @@ -943,13 +943,13 @@ struct CmdRepl : InstallablesCommand auto what = installable->what(); state->forceValue(*val, pos); auto autoArgs = getAutoArgs(*state); - Value *valPost = state->allocValue(); + auto valPost = state->allocValue(); state->autoCallFunction(*autoArgs, *val, *valPost); state->forceValue(*valPost, pos); values.push_back( {valPost, what }); } else { auto [val, pos] = installable->toValue(*state); - values.push_back( {val,what} ); + values.push_back( {val, what} ); } } return values; |