diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-03-09 20:31:50 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-03-09 20:31:50 +0100 |
commit | 4d98143914120d0163f5c50f30ce8a5289433f8f (patch) | |
tree | 13e214d32d6fdd191469f5d91bf90a4450dbc0b1 /src/libstore/build-result.hh | |
parent | 1c1a7074dae04414268d47c5b94e8d78afee8770 (diff) |
BuildResult: Remove unused drvPath field
Diffstat (limited to 'src/libstore/build-result.hh')
-rw-r--r-- | src/libstore/build-result.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/build-result.hh b/src/libstore/build-result.hh index d39d23a76..cb6d19b8e 100644 --- a/src/libstore/build-result.hh +++ b/src/libstore/build-result.hh @@ -67,8 +67,8 @@ struct BuildResult /* The derivation we built or the store path we substituted. */ DerivedPath path; - /* For derivations, the derivation path and the wanted outputs. */ - std::optional<StorePath> drvPath; + /* For derivations, a mapping from the names of the wanted outputs + to actual paths. */ DrvOutputs builtOutputs; /* The start/stop times of the build (or one of the rounds, if it |