Skip to content

Commit

Permalink
Remove extra semi colon from fizz/server/SlidingBloomReplayCache.cpp
Browse files Browse the repository at this point in the history
Summary:
`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: palmje

Differential Revision: D51995071

fbshipit-source-id: 9fe4fea41a88517fae7d7572fed738dbe77825b0
  • Loading branch information
r-barnes authored and facebook-github-bot committed Dec 13, 2023
1 parent a6a5540 commit 79a63d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fizz/server/SlidingBloomReplayCache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,4 +192,4 @@ void SlidingBloomReplayCache::timeoutExpired() noexcept {
scheduleTimeout(bucketWidthInMs_.count());
}
} // namespace server
}; // namespace fizz
} // namespace fizz
2 changes: 1 addition & 1 deletion fizz/tool/FizzCommandCommon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ hpke::KEMId getKEMId(std::string kemStr) {

// Input doesn't match any KEM id.
throw std::runtime_error("Input doesn't match any KEM id");
};
}

std::string tryReadFile(const std::string& echFile) {
if (echFile.empty()) {
Expand Down

0 comments on commit 79a63d8

Please sign in to comment.