Remove extra semi colon from internal_repo_rocksdb/repo/include/rocksdb/table.h (#12277)

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

`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: jaykorean

Differential Revision: D52969088

fbshipit-source-id: cd83cb3cd98b1389ddfe3e5e316f088eb5975b9f
This commit is contained in:
Richard Barnes 2024-01-24 07:22:31 -08:00 committed by Facebook GitHub Bot
parent 3079a7e7c2
commit 8c01cb79da
1 changed files with 6 additions and 6 deletions

View File

@ -127,7 +127,7 @@ struct CacheUsageOptions {
// For advanced user only
struct BlockBasedTableOptions {
static const char* kName() { return "BlockTableOptions"; };
static const char* kName() { return "BlockTableOptions"; }
// @flush_block_policy_factory creates the instances of flush block policy.
// which provides a configurable way to determine when to flush a block in
// the block based tables. If not set, table builder will use the default
@ -705,7 +705,7 @@ struct PlainTablePropertyNames {
const uint32_t kPlainTableVariableLength = 0;
struct PlainTableOptions {
static const char* kName() { return "PlainTableOptions"; };
static const char* kName() { return "PlainTableOptions"; }
// @user_key_len: plain table has optimization for fix-sized keys, which can
// be specified via user_key_len. Alternatively, you can pass
// `kPlainTableVariableLength` if your keys have variable
@ -799,7 +799,7 @@ struct CuckooTablePropertyNames {
};
struct CuckooTableOptions {
static const char* kName() { return "CuckooTableOptions"; };
static const char* kName() { return "CuckooTableOptions"; }
// Determines the utilization of hash tables. Smaller values
// result in larger hash tables with fewer collisions.
@ -841,10 +841,10 @@ class TableFactory : public Customizable {
public:
virtual ~TableFactory() override {}
static const char* kBlockCacheOpts() { return "BlockCache"; };
static const char* kBlockBasedTableName() { return "BlockBasedTable"; };
static const char* kBlockCacheOpts() { return "BlockCache"; }
static const char* kBlockBasedTableName() { return "BlockBasedTable"; }
static const char* kPlainTableName() { return "PlainTable"; }
static const char* kCuckooTableName() { return "CuckooTable"; };
static const char* kCuckooTableName() { return "CuckooTable"; }
// Creates and configures a new TableFactory from the input options and id.
static Status CreateFromString(const ConfigOptions& config_options,