diff options
author | Robert Hensing <robert@roberthensing.nl> | 2021-03-17 11:27:11 +0100 |
---|---|---|
committer | Robert Hensing <robert@roberthensing.nl> | 2021-03-17 11:27:11 +0100 |
commit | a61112aadf58c1578cbdcba32b1582d25ca7ed9b (patch) | |
tree | 94d673c476dd65e7cb16cdfc76ccf1e01cacafff | |
parent | 338f2710580b334a754fad28b88c5cb137c83352 (diff) |
Remove unimplemented hashAlgoOpt
It was in the header but never implemented.
-rw-r--r-- | src/libstore/derivations.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/derivations.hh b/src/libstore/derivations.hh index 061d70f69..2df440536 100644 --- a/src/libstore/derivations.hh +++ b/src/libstore/derivations.hh @@ -52,7 +52,7 @@ struct DerivationOutput DerivationOutputCAFloating, DerivationOutputDeferred > output; - std::optional<HashType> hashAlgoOpt(const Store & store) const; + /* Note, when you use this function you should make sure that you're passing the right derivation name. When in doubt, you should use the safer interface provided by BasicDerivation::outputsAndOptPaths */ |