mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-24 14:56:15 +02:00
Cleanup tabs
This commit is contained in:
parent
9c5de066eb
commit
47f0d7b798
1 changed files with 10 additions and 10 deletions
|
@ -115,16 +115,16 @@ std::optional<ContentAddress> getDerivationCA(const BasicDerivation & drv)
|
||||||
return std::nullopt;
|
return std::nullopt;
|
||||||
if (auto dof = std::get_if<DerivationOutputCAFixed>(&out->second.output)) {
|
if (auto dof = std::get_if<DerivationOutputCAFixed>(&out->second.output)) {
|
||||||
return std::visit(overloaded {
|
return std::visit(overloaded {
|
||||||
[&](TextInfo ti) -> std::optional<ContentAddress> {
|
[&](TextInfo ti) -> std::optional<ContentAddress> {
|
||||||
if (!ti.references.empty())
|
if (!ti.references.empty())
|
||||||
return std::nullopt;
|
return std::nullopt;
|
||||||
return static_cast<TextHash>(ti);
|
return static_cast<TextHash>(ti);
|
||||||
},
|
},
|
||||||
[&](FixedOutputInfo fi) -> std::optional<ContentAddress> {
|
[&](FixedOutputInfo fi) -> std::optional<ContentAddress> {
|
||||||
if (fi.references != PathReferences<StorePath> {})
|
if (fi.references != PathReferences<StorePath> {})
|
||||||
return std::nullopt;
|
return std::nullopt;
|
||||||
return static_cast<FixedOutputHash>(fi);
|
return static_cast<FixedOutputHash>(fi);
|
||||||
},
|
},
|
||||||
}, dof->ca);
|
}, dof->ca);
|
||||||
}
|
}
|
||||||
return std::nullopt;
|
return std::nullopt;
|
||||||
|
|
Loading…
Reference in a new issue