diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-10-19T13·02+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-10-19T13·02+0200 |
commit | 29727ff944be7e00c31ad95d0958e6fabc7d12a4 (patch) | |
tree | 500824f30852ce8a92a30a016a415438e7570f05 /src/libstore | |
parent | e5346c54df91c23cf75004a65d0436cdc1c0351a (diff) |
Shut up clang warning
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/http-binary-cache-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/http-binary-cache-store.cc b/src/libstore/http-binary-cache-store.cc index 74ae7a4d198a..9d31f77c921f 100644 --- a/src/libstore/http-binary-cache-store.cc +++ b/src/libstore/http-binary-cache-store.cc @@ -71,7 +71,7 @@ protected: void getFile(const std::string & path, std::function<void(std::shared_ptr<std::string>)> success, - std::function<void(std::exception_ptr exc)> failure) + std::function<void(std::exception_ptr exc)> failure) override { DownloadRequest request(cacheUri + "/" + path); request.showProgress = DownloadRequest::no; |