mirror of https://github.com/facebook/rocksdb.git
Remove extra semi colon from internal_repo_rocksdb/repo/db/internal_stats.h (#12278)
Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/12278 `-Wextra-semi` or `-Wextra-semi-stmt` If the code compiles, this is safe to land. Reviewed By: jaykorean Differential Revision: D52969116 fbshipit-source-id: 8cb28dafdbede54e8cb59c2b8d461b1eddb3de68
This commit is contained in:
parent
5eebfaaa09
commit
3079a7e7c2
|
@ -432,7 +432,7 @@ class InternalStats {
|
|||
explicit CompactionStatsFull() : stats(), penultimate_level_stats() {}
|
||||
|
||||
explicit CompactionStatsFull(CompactionReason reason, int c)
|
||||
: stats(reason, c), penultimate_level_stats(reason, c){};
|
||||
: stats(reason, c), penultimate_level_stats(reason, c){}
|
||||
|
||||
uint64_t TotalBytesWritten() const {
|
||||
uint64_t bytes_written = stats.bytes_written + stats.bytes_written_blob;
|
||||
|
|
Loading…
Reference in New Issue