diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-01-06 12:43:07 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-01-06 12:43:07 +0100 |
commit | 1dc29df1d384e90d0604e1b21150cfc93b58ff56 (patch) | |
tree | c48f2e772fa5d01eda24f1bd165380f2534dd25a /src/libexpr/eval.cc | |
parent | c7866733d7ce2836fbb43de90dd64d17b0d20753 (diff) | |
parent | 0486e87791f0d50f98ccd46c56f32ecc4e1bc79c (diff) |
Merge remote-tracking branch 'origin/master' into flakes
Diffstat (limited to 'src/libexpr/eval.cc')
-rw-r--r-- | src/libexpr/eval.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index cddbce20d..427a6f299 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -1146,9 +1146,7 @@ void EvalState::callPrimOp(Value & fun, Value & arg, Value & v, const Pos & pos) void EvalState::callFunction(Value & fun, Value & arg, Value & v, const Pos & pos) { - std::unique_ptr<FunctionCallTrace> trace; - if (evalSettings.traceFunctionCalls) - trace = std::make_unique<FunctionCallTrace>(pos); + auto trace = evalSettings.traceFunctionCalls ? std::make_unique<FunctionCallTrace>(pos) : nullptr; forceValue(fun, pos); |