1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-02 13:31:48 +02:00

Fix DerivationOutputExtensional name

This commit is contained in:
Matthew Bauer 2020-07-09 11:37:18 -04:00
parent 06a4e15478
commit a7884970c5
4 changed files with 8 additions and 8 deletions

View file

@ -13,7 +13,7 @@ namespace nix {
/* Abstract syntax of derivations. */
struct DerivationOutputIntensional
struct DerivationOutputExtensional
{
StorePath path;
};
@ -25,7 +25,7 @@ struct DerivationOutputFixed
struct DerivationOutput
{
std::variant<DerivationOutputIntensional, DerivationOutputFixed> output;
std::variant<DerivationOutputExtensional, DerivationOutputFixed> output;
StorePath path(const Store & store, string drvName) const;
};