Remove unneeded constructor for DerivationOutputHash

This commit is contained in:
John Ericson 2020-06-19 15:11:11 +00:00
parent b90cac3bad
commit fb39a5e00c

View file

@ -16,10 +16,6 @@ namespace nix {
struct DerivationOutputHash {
FileIngestionMethod method;
Hash hash;
DerivationOutputHash(FileIngestionMethod method, Hash hash)
: method(std::move(method))
, hash(std::move(hash))
{ }
std::string printMethodAlgo() const;
};