diff options
author | Ben Burdette <bburdette@protonmail.com> | 2022-04-29 11:24:54 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@protonmail.com> | 2022-04-29 11:24:54 -0600 |
commit | 172a83d22a3c984b6b569b5528d2338059bb748b (patch) | |
tree | 2dc8dd7a2726eaa125ac8e64ccc5a6944669b7fd /src/libexpr/nixexpr.cc | |
parent | ca6cba8b81502450f8e377112ce11303ccedc760 (diff) |
line endings
Diffstat (limited to 'src/libexpr/nixexpr.cc')
-rw-r--r-- | src/libexpr/nixexpr.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libexpr/nixexpr.cc b/src/libexpr/nixexpr.cc index c6e545729..5624c4780 100644 --- a/src/libexpr/nixexpr.cc +++ b/src/libexpr/nixexpr.cc @@ -352,7 +352,7 @@ void ExprVar::bindVars(const EvalState & es, const std::shared_ptr<const StaticE /* Otherwise, the variable must be obtained from the nearest enclosing `with'. If there is no `with', then we can issue an "undefined variable" error now. */ - if (withLevel == -1) + if (withLevel == -1) { throw UndefinedVarError({ .msg = hintfmt("undefined variable '%1%'", es.symbols[name]), @@ -392,7 +392,7 @@ void ExprAttrs::bindVars(const EvalState & es, const std::shared_ptr<const Stati staticenv = env; if (recursive) { - auto newEnv = std::shared_ptr<StaticEnv>(new StaticEnv(false, env.get(), recursive ? attrs.size() : 0)); + auto newEnv = std::shared_ptr<StaticEnv>(new StaticEnv(false, env.get(), recursive ? attrs.size() : 0)); Displacement displ = 0; for (auto & i : attrs) |