remove unused InternalIteratorBase::is_mutable_ (#11104)

Summary:
`InternalIteratorBase::is_mutable_` is not used any more, remove it.

Pull Request resolved: https://github.com/facebook/rocksdb/pull/11104

Reviewed By: ajkr

Differential Revision: D42582747

Pulled By: cbi42

fbshipit-source-id: d30bf75151fc8414df0ae112a6ec4943b5b7330b
This commit is contained in:
leipeng 2023-01-19 13:28:58 -08:00 committed by Facebook GitHub Bot
parent fd911f9655
commit a5bcbcd8be
1 changed files with 0 additions and 2 deletions

View File

@ -203,8 +203,6 @@ class InternalIteratorBase : public Cleanable {
Prev();
}
}
bool is_mutable_;
};
using InternalIterator = InternalIteratorBase<Slice>;