From 47f0d7b79833c3b5934c768fcc4b65223c8a7c4b Mon Sep 17 00:00:00 2001 From: John Ericson Date: Tue, 13 Oct 2020 16:22:30 +0000 Subject: [PATCH] Cleanup tabs --- src/libstore/misc.cc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/libstore/misc.cc b/src/libstore/misc.cc index 71fa81546..778ee4709 100644 --- a/src/libstore/misc.cc +++ b/src/libstore/misc.cc @@ -115,16 +115,16 @@ std::optional getDerivationCA(const BasicDerivation & drv) return std::nullopt; if (auto dof = std::get_if(&out->second.output)) { return std::visit(overloaded { - [&](TextInfo ti) -> std::optional { - if (!ti.references.empty()) - return std::nullopt; - return static_cast(ti); - }, - [&](FixedOutputInfo fi) -> std::optional { - if (fi.references != PathReferences {}) - return std::nullopt; - return static_cast(fi); - }, + [&](TextInfo ti) -> std::optional { + if (!ti.references.empty()) + return std::nullopt; + return static_cast(ti); + }, + [&](FixedOutputInfo fi) -> std::optional { + if (fi.references != PathReferences {}) + return std::nullopt; + return static_cast(fi); + }, }, dof->ca); } return std::nullopt;