diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-07-26T19·25+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-07-26T19·25+0200 |
commit | ee22a91ab847f63a22466f3bf63e33ca29da9cfe (patch) | |
tree | 6808d04aeb5b66411014f252c1ee3c1f1e35d0d9 /src/libstore/derivations.hh | |
parent | 06bbfb6004942bfcddd930e746ee7a2bfe5c3872 (diff) |
makeFixedOutputPath(): Drop superfluous HashType argument
Diffstat (limited to 'src/libstore/derivations.hh')
-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 e27c937132e8..974de78c58d5 100644 --- a/src/libstore/derivations.hh +++ b/src/libstore/derivations.hh @@ -29,7 +29,7 @@ struct DerivationOutput this->hashAlgo = hashAlgo; this->hash = hash; } - void parseHashInfo(bool & recursive, HashType & hashType, Hash & hash) const; + void parseHashInfo(bool & recursive, Hash & hash) const; }; typedef std::map<string, DerivationOutput> DerivationOutputs; |