aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/derivations.hh
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2020-06-19 15:11:11 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2020-06-19 15:11:11 +0000
commitfb39a5e00c03c8fb3b893263e1d2b151c3ba11aa (patch)
treec7e3f9ed2f7d15a8b426664c84a679db5582372d /src/libstore/derivations.hh
parentb90cac3bad41715c2fefc9d725630d0abb9af725 (diff)
Remove unneeded constructor for `DerivationOutputHash`
Diffstat (limited to 'src/libstore/derivations.hh')
-rw-r--r--src/libstore/derivations.hh4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libstore/derivations.hh b/src/libstore/derivations.hh
index 292861065..7b677ca49 100644
--- a/src/libstore/derivations.hh
+++ b/src/libstore/derivations.hh
@@ -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;
};