Skip to content

Commit

Permalink
Remove extra semi colon from internal_repo_rocksdb/repo/db/internal_s…
Browse files Browse the repository at this point in the history
…tats.h (facebook#12278)

Summary:
Pull Request resolved: facebook#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
  • Loading branch information
r-barnes authored and facebook-github-bot committed Jan 24, 2024
1 parent 5eebfaa commit 3079a7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/internal_stats.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3079a7e

Please sign in to comment.