Optimize ValidPathInfo construction a bit better

This commit is contained in:
John Ericson 2023-01-06 12:26:15 -05:00
parent 6a168254ce
commit 9cfa78e58a

View file

@ -1340,13 +1340,13 @@ ValidPathInfo::ValidPathInfo(
, narHash(narHash) , narHash(narHash)
{ {
std::visit(overloaded { std::visit(overloaded {
[this](const TextInfo & ti) { [this](TextInfo && ti) {
this->references = ti.references; this->references = std::move(ti.references);
this->ca = TextHash { std::move(ti) }; this->ca = std::move((TextHash &&) ti);
}, },
[this](const FixedOutputInfo & foi) { [this](FixedOutputInfo && foi) {
*(static_cast<PathReferences<StorePath> *>(this)) = foi.references; *(static_cast<PathReferences<StorePath> *>(this)) = std::move(foi.references);
this->ca = FixedOutputHash { (FixedOutputHash) std::move(foi) }; this->ca = std::move((FixedOutputHash &&) foi);
}, },
}, std::move(info.info)); }, std::move(info.info));
} }