diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2021-04-05 09:48:18 -0400 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2021-04-05 09:52:25 -0400 |
commit | 9b805d36ac70545fc4c0d863e21e0c2e5f2518a1 (patch) | |
tree | 17159577fceae59f879a96789cf1004c7d12fc11 /src/libstore/path-with-outputs.hh | |
parent | 9dfb97c987d8b9d6a3d15f016e40f22f91deb764 (diff) |
Rename Buildable
Diffstat (limited to 'src/libstore/path-with-outputs.hh')
-rw-r--r-- | src/libstore/path-with-outputs.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstore/path-with-outputs.hh b/src/libstore/path-with-outputs.hh index 870cac08e..749348398 100644 --- a/src/libstore/path-with-outputs.hh +++ b/src/libstore/path-with-outputs.hh @@ -14,12 +14,12 @@ struct StorePathWithOutputs std::string to_string(const Store & store) const; - BuildableReq toBuildableReq() const; + DerivedPath toDerivedPath() const; - static std::variant<StorePathWithOutputs, StorePath> tryFromBuildableReq(const BuildableReq &); + static std::variant<StorePathWithOutputs, StorePath> tryFromDerivedPath(const DerivedPath &); }; -std::vector<BuildableReq> toBuildableReqs(const std::vector<StorePathWithOutputs>); +std::vector<DerivedPath> toDerivedPaths(const std::vector<StorePathWithOutputs>); std::pair<std::string_view, StringSet> parsePathWithOutputs(std::string_view s); |