From 72930485b5ed2885f7916570a7579d9ef47dc51c Mon Sep 17 00:00:00 2001 From: Islam AbdelRahman Date: Mon, 30 Nov 2015 10:03:07 -0800 Subject: [PATCH] Fix clang build Summary: Fix clang Test Plan: make check Reviewers: sdong, yhchiang, rven Subscribers: dhruba Differential Revision: https://reviews.facebook.net/D51417 --- include/rocksdb/env.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/rocksdb/env.h b/include/rocksdb/env.h index 11a23883c..00fa52001 100644 --- a/include/rocksdb/env.h +++ b/include/rocksdb/env.h @@ -769,9 +769,9 @@ class EnvWrapper : public Env { return target_->NewWritableFile(f, r, options); } Status ReuseWritableFile(const std::string& fname, - const std::string& old_fname, - unique_ptr* r, - const EnvOptions& options) { + const std::string& old_fname, + unique_ptr* r, + const EnvOptions& options) override { return target_->ReuseWritableFile(fname, old_fname, r, options); } virtual Status NewDirectory(const std::string& name, -- GitLab