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/libcmd/installables.hh | |
parent | 9dfb97c987d8b9d6a3d15f016e40f22f91deb764 (diff) |
Rename Buildable
Diffstat (limited to 'src/libcmd/installables.hh')
-rw-r--r-- | src/libcmd/installables.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libcmd/installables.hh b/src/libcmd/installables.hh index e5c6fe208..0bc932b52 100644 --- a/src/libcmd/installables.hh +++ b/src/libcmd/installables.hh @@ -29,9 +29,9 @@ struct Installable virtual std::string what() = 0; - virtual Buildables toBuildables() = 0; + virtual DerivedPathsWithHints toDerivedPathsWithHints() = 0; - Buildable toBuildable(); + DerivedPathWithHints toDerivedPathWithHints(); App toApp(EvalState & state); @@ -74,7 +74,7 @@ struct InstallableValue : Installable virtual std::vector<DerivationInfo> toDerivations() = 0; - Buildables toBuildables() override; + DerivedPathsWithHints toDerivedPathsWithHints() override; }; struct InstallableFlake : InstallableValue |