ソースを参照

Use override consistently in leveldb::test::ErrorEnv.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=239453565
main
costan 5年前
committed by Victor Costan
コミット
15e2278966
1個のファイルの変更4行の追加4行の削除
  1. +4
    -4
      util/testutil.h

+ 4
- 4
util/testutil.h ファイルの表示

@ -40,8 +40,8 @@ class ErrorEnv : public EnvWrapper {
delete target();
}
virtual Status NewWritableFile(const std::string& fname,
WritableFile** result) {
Status NewWritableFile(const std::string& fname,
WritableFile** result) override {
if (writable_file_error_) {
++num_writable_file_errors_;
*result = nullptr;
@ -50,8 +50,8 @@ class ErrorEnv : public EnvWrapper {
return target()->NewWritableFile(fname, result);
}
virtual Status NewAppendableFile(const std::string& fname,
WritableFile** result) {
Status NewAppendableFile(const std::string& fname,
WritableFile** result) override {
if (writable_file_error_) {
++num_writable_file_errors_;
*result = nullptr;

読み込み中…
キャンセル
保存