Remove extra semi colon from internal_repo_rocksdb/repo/tools/ldb_cmd.cc

Summary:
`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: palmje

Differential Revision: D54362227

fbshipit-source-id: ac634ba34f9351ba559c4ed96448f51d6ef33175
This commit is contained in:
Richard Barnes 2024-03-18 18:51:50 -07:00 committed by Facebook GitHub Bot
parent 4868c10b44
commit fc40165614
2 changed files with 2 additions and 2 deletions

View File

@ -123,7 +123,7 @@ void DumpSstFile(Options options, std::string filename, bool output_hex,
void DumpBlobFile(const std::string& filename, bool is_key_hex,
bool is_value_hex, bool dump_uncompressed_blobs);
}; // namespace
} // namespace
LDBCommand* LDBCommand::InitFromCmdLineArgs(
int argc, char const* const* argv, const Options& options,

View File

@ -14,7 +14,7 @@ namespace ROCKSDB_NAMESPACE {
WritePreparedSnapshotChecker::WritePreparedSnapshotChecker(
WritePreparedTxnDB* txn_db)
: txn_db_(txn_db){};
: txn_db_(txn_db){}
SnapshotCheckerResult WritePreparedSnapshotChecker::CheckInSnapshot(
SequenceNumber sequence, SequenceNumber snapshot_sequence) const {