mirror of https://github.com/facebook/rocksdb.git
Fix clang build
Summary: Fix clang Test Plan: make check Reviewers: sdong, yhchiang, rven Subscribers: dhruba Differential Revision: https://reviews.facebook.net/D51417
This commit is contained in:
parent
6bbfa1874b
commit
72930485b5
|
@ -771,7 +771,7 @@ class EnvWrapper : public Env {
|
|||
Status ReuseWritableFile(const std::string& fname,
|
||||
const std::string& old_fname,
|
||||
unique_ptr<WritableFile>* r,
|
||||
const EnvOptions& options) {
|
||||
const EnvOptions& options) override {
|
||||
return target_->ReuseWritableFile(fname, old_fname, r, options);
|
||||
}
|
||||
virtual Status NewDirectory(const std::string& name,
|
||||
|
|
Loading…
Reference in New Issue