diff options
author | John Ericson <git@JohnEricson.me> | 2019-11-10 11:23:35 -0500 |
---|---|---|
committer | John Ericson <git@JohnEricson.me> | 2019-11-10 11:24:47 -0500 |
commit | 4c34054673edd67cd1cfd81ab2972f27e518c78a (patch) | |
tree | 50911094428627a75d642f1ec01372354533e403 /src/libexpr/eval.cc | |
parent | 96e6e680c1a298613756571e4984c340ce887c2a (diff) |
Remove unneeded semicolons
Diffstat (limited to 'src/libexpr/eval.cc')
-rw-r--r-- | src/libexpr/eval.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index f60e8d3ab..34e527c52 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -432,7 +432,7 @@ Path EvalState::toRealPath(const Path & path, const PathSet & context) !context.empty() && store->isInStore(path) ? store->toRealPath(path) : path; -}; +} Value * EvalState::addConstant(const string & name, Value & v) |