diff options
author | regnat <rg@regnat.ovh> | 2021-06-22 10:42:23 +0200 |
---|---|---|
committer | regnat <rg@regnat.ovh> | 2021-06-23 11:27:16 +0200 |
commit | 40f925b2dacb481b62d325fb41641804524a5dc8 (patch) | |
tree | 647a4051f91ce30727415e6121e961de877772f2 /src/libstore/local-store.cc | |
parent | d32cf0c17a3e5e139c384375084d9eb6aa428c3b (diff) |
Fix indentation
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r-- | src/libstore/local-store.cc | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index 8df1d55b9..064f7a432 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -1826,11 +1826,12 @@ std::optional<const Realisation> LocalStore::queryRealisation_( } std::optional<const Realisation> -LocalStore::queryRealisation(const DrvOutput &id) { - return retrySQLite<std::optional<const Realisation>>([&]() { - auto state(_state.lock()); - return queryRealisation_(*state, id); - }); +LocalStore::queryRealisation(const DrvOutput & id) +{ + return retrySQLite<std::optional<const Realisation>>([&]() { + auto state(_state.lock()); + return queryRealisation_(*state, id); + }); } FixedOutputHash LocalStore::hashCAPath( |