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:
anand76
2024-05-03 10:34:05 -07:00
parent 78a1fcba4c
commit bcc51fcc2e
+1 -1
View File
@@ -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