diff options
author | Théophane Hufschmitt <regnat@users.noreply.github.com> | 2021-02-04 14:47:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-04 14:47:56 +0100 |
commit | 43d409f6690b79b5d4e1ab5e9780de93eb0f677a (patch) | |
tree | ae995b77aef0c0efde493bc29455ade7a0757690 /src/libstore/realisation.cc | |
parent | ca8facefb6b6b0ffd6e22507111847dbfc9a3c75 (diff) |
Fix a whitespace issue
Co-authored-by: Eelco Dolstra <edolstra@gmail.com>
Diffstat (limited to 'src/libstore/realisation.cc')
-rw-r--r-- | src/libstore/realisation.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/realisation.cc b/src/libstore/realisation.cc index c9b66186f..e4276c040 100644 --- a/src/libstore/realisation.cc +++ b/src/libstore/realisation.cc @@ -65,7 +65,7 @@ void RealisedPath::closure( ret.insert(pathsClosure.begin(), pathsClosure.end()); } -void RealisedPath::closure(Store& store, RealisedPath::Set& ret) const +void RealisedPath::closure(Store& store, RealisedPath::Set & ret) const { RealisedPath::closure(store, {*this}, ret); } |