diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2023-01-10 14:52:49 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2023-01-10 14:52:49 +0100 |
commit | b80e4b57dae78490ed644a2e2a840dae39d1da4e (patch) | |
tree | 8eae0180569e496652ce78772d41c0e8e6eb8d1e /src/libcmd/installables.hh | |
parent | 8e923bf4c53233aba9e21c06b5da0d800da37e40 (diff) |
ExtraInfo -> ExtraPathInfo
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 95ab4a40e..250cf7e83 100644 --- a/src/libcmd/installables.hh +++ b/src/libcmd/installables.hh @@ -52,7 +52,7 @@ enum class OperateOn { Derivation }; -struct ExtraInfo +struct ExtraPathInfo { std::optional<NixInt> priority; std::optional<FlakeRef> originalRef; @@ -67,13 +67,13 @@ struct ExtraInfo struct DerivedPathWithInfo { DerivedPath path; - ExtraInfo info; + ExtraPathInfo info; }; struct BuiltPathWithResult { BuiltPath path; - ExtraInfo info; + ExtraPathInfo info; std::optional<BuildResult> result; }; |