mirror of https://github.com/facebook/rocksdb.git
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:
parent
4868c10b44
commit
fc40165614
|
@ -123,7 +123,7 @@ void DumpSstFile(Options options, std::string filename, bool output_hex,
|
||||||
|
|
||||||
void DumpBlobFile(const std::string& filename, bool is_key_hex,
|
void DumpBlobFile(const std::string& filename, bool is_key_hex,
|
||||||
bool is_value_hex, bool dump_uncompressed_blobs);
|
bool is_value_hex, bool dump_uncompressed_blobs);
|
||||||
}; // namespace
|
} // namespace
|
||||||
|
|
||||||
LDBCommand* LDBCommand::InitFromCmdLineArgs(
|
LDBCommand* LDBCommand::InitFromCmdLineArgs(
|
||||||
int argc, char const* const* argv, const Options& options,
|
int argc, char const* const* argv, const Options& options,
|
||||||
|
|
|
@ -14,7 +14,7 @@ namespace ROCKSDB_NAMESPACE {
|
||||||
|
|
||||||
WritePreparedSnapshotChecker::WritePreparedSnapshotChecker(
|
WritePreparedSnapshotChecker::WritePreparedSnapshotChecker(
|
||||||
WritePreparedTxnDB* txn_db)
|
WritePreparedTxnDB* txn_db)
|
||||||
: txn_db_(txn_db){};
|
: txn_db_(txn_db){}
|
||||||
|
|
||||||
SnapshotCheckerResult WritePreparedSnapshotChecker::CheckInSnapshot(
|
SnapshotCheckerResult WritePreparedSnapshotChecker::CheckInSnapshot(
|
||||||
SequenceNumber sequence, SequenceNumber snapshot_sequence) const {
|
SequenceNumber sequence, SequenceNumber snapshot_sequence) const {
|
||||||
|
|
Loading…
Reference in New Issue