From bcd32560dd5898956b9d24553c2bb3c1b1d2319f Mon Sep 17 00:00:00 2001 From: Marek Kurdej Date: Fri, 22 May 2020 11:16:43 -0700 Subject: [PATCH] Fix warning -Wextra-semi. NFC. (#6869) Summary: Minor fix. CLA signed. Pull Request resolved: https://github.com/facebook/rocksdb/pull/6869 Reviewed By: ajkr Differential Revision: D21704001 Pulled By: pdillinger fbshipit-source-id: 57fd08114f3234f51f34758e25e708cc70962582 --- utilities/cassandra/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/cassandra/format.h b/utilities/cassandra/format.h index 3f9b433c7..0e0d98c32 100644 --- a/utilities/cassandra/format.h +++ b/utilities/cassandra/format.h @@ -157,7 +157,7 @@ public: RowValue& operator=(const RowValue& /*that*/) = delete; RowValue& operator=(RowValue&& /*that*/) = default; - std::size_t Size() const;; + std::size_t Size() const; bool IsTombstone() const; // For Tombstone this returns the marked_for_delete_at_, // otherwise it returns the max timestamp of containing columns.