Skip to content

Commit

Permalink
Remove extra semi colon from fb_mysql/8.0.28/rocksdb/util/murmurhash.…
Browse files Browse the repository at this point in the history
…cc (#537)

Summary:
Pull Request resolved: #537

`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: palmje

Differential Revision: D55087362

fbshipit-source-id: b9840b474e275149c3b80e5c8f1bfcc483da3ff9
  • Loading branch information
r-barnes authored and facebook-github-bot committed Mar 20, 2024
1 parent 76ee6a9 commit 4772c0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fbpcf/mpc/EmpApp.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class EmpApp {
useTls_{false},
tlsDir_{""} {}

virtual ~EmpApp(){};
virtual ~EmpApp() {}

virtual void run() {
auto io = std::make_unique<emp::NetIO>(
Expand All @@ -51,7 +51,7 @@ class EmpApp {
auto output = game.perfPlay(inputData);

putOutputData(output);
};
}

protected:
virtual InputDataType getInputData() = 0;
Expand Down

0 comments on commit 4772c0f

Please sign in to comment.