aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/path-with-outputs.cc
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2023-01-11 11:54:43 -0500
committerJohn Ericson <John.Ericson@Obsidian.Systems>2023-01-11 19:08:19 -0500
commit114a6e2b09eda7f23e7776e1cdf77715044e073e (patch)
tree34a3a255f4543925fff023160bde3789b8071e64 /src/libstore/path-with-outputs.cc
parent8a3b1b7ced3e00d29a0274dde110801dea4a1e0e (diff)
Make it hard to construct an empty `OutputsSpec::Names`
This should be a non-empty set, and so we don't want people doing this by accident. We remove the zero-0 constructor with a little inheritance trickery.
Diffstat (limited to 'src/libstore/path-with-outputs.cc')
-rw-r--r--src/libstore/path-with-outputs.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/path-with-outputs.cc b/src/libstore/path-with-outputs.cc
index 10e0cc63e..6c0704ed9 100644
--- a/src/libstore/path-with-outputs.cc
+++ b/src/libstore/path-with-outputs.cc
@@ -53,7 +53,7 @@ std::variant<StorePathWithOutputs, StorePath> StorePathWithOutputs::tryFromDeriv
return {};
},
[&](const OutputsSpec::Names & outputs) {
- return outputs;
+ return static_cast<StringSet>(outputs);
},
}, bfd.outputs.raw()),
};