diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-05-31T11·31+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-05-31T11·31+0200 |
commit | a9fa5e050aaebe852ea5dd5c2622062db15ba3ac (patch) | |
tree | ae32a1ee0e41a03c71141700e69c5ef8d485744d /src/libstore/binary-cache-store.hh | |
parent | 10f3a2e5f213df4a1d50947066613bf87a5a1008 (diff) |
Shut up some clang warnings
Diffstat (limited to 'src/libstore/binary-cache-store.hh')
-rw-r--r-- | src/libstore/binary-cache-store.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstore/binary-cache-store.hh b/src/libstore/binary-cache-store.hh index bedb4c9f0c9f..3f269b8cf024 100644 --- a/src/libstore/binary-cache-store.hh +++ b/src/libstore/binary-cache-store.hh @@ -78,10 +78,10 @@ public: { return {}; } void querySubstitutablePathInfos(const PathSet & paths, - SubstitutablePathInfos & infos) + SubstitutablePathInfos & infos) override { } - bool wantMassQuery() { return wantMassQuery_; } + bool wantMassQuery() override { return wantMassQuery_; } void addToStore(const ValidPathInfo & info, const std::string & nar, bool repair = false, bool dontCheckSigs = false) override; @@ -128,7 +128,7 @@ public: ref<FSAccessor> getFSAccessor() override; - void addSignatures(const Path & storePath, const StringSet & sigs) + void addSignatures(const Path & storePath, const StringSet & sigs) override { notImpl(); } }; |