diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-07-03 14:11:38 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-07-03 14:11:38 +0000 |
commit | dbffd309fed95d306135617fdc18ce4cf6109025 (patch) | |
tree | 97f8be0fa860f2c725c6ee5555a324f14d9889b0 /src/libstore/build.cc | |
parent | 1be279af2622b196cc4630c48254adc96071c7e9 (diff) | |
parent | c3c7aedbb5ac869b7c454e90683f77b9c527a75a (diff) |
Merge branch 'master' of github.com:NixOS/nix into hash-always-has-type
Diffstat (limited to 'src/libstore/build.cc')
-rw-r--r-- | src/libstore/build.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc index ba89230b0..a57055168 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -2753,8 +2753,8 @@ struct RestrictedStore : public LocalFSStore void queryReferrers(const StorePath & path, StorePathSet & referrers) override { } - StorePathSet queryDerivationOutputs(const StorePath & path) override - { throw Error("queryDerivationOutputs"); } + OutputPathMap queryDerivationOutputMap(const StorePath & path) override + { throw Error("queryDerivationOutputMap"); } std::optional<StorePath> queryPathFromHashPart(const std::string & hashPart) override { throw Error("queryPathFromHashPart"); } |