mirror of
https://github.com/facebook/rocksdb.git
synced 2026-07-07 14:47:40 +08:00
Fix build error due to virtual Iterator destructor (#12612)
Summary: Fix build error due to virtual Iterator destructor not marked as override. Pull Request resolved: https://github.com/facebook/rocksdb/pull/12612 Reviewed By: jaykorean Differential Revision: D56939155 Pulled By: anand1976 fbshipit-source-id: 2921d6facc296c69215de45151b08e279a1a98a2
This commit is contained in:
@@ -32,7 +32,7 @@ class Iterator : public IteratorBase {
|
||||
Iterator(const Iterator&) = delete;
|
||||
void operator=(const Iterator&) = delete;
|
||||
|
||||
virtual ~Iterator() {}
|
||||
virtual ~Iterator() override {}
|
||||
|
||||
// Return the value for the current entry. If the entry is a plain key-value,
|
||||
// return the value as-is; if it is a wide-column entity, return the value of
|
||||
|
||||
Reference in New Issue
Block a user