Skip to content

Commit

Permalink
Remove extra semi colon from fbpcf/mpc/IMpcGame.h (#530)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #530

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

If the code compiles, this is safe to land.

Reviewed By: dmm-fb

Differential Revision: D52969050

fbshipit-source-id: 6dbabf473d39e2688ee568afe915e6b340da7a6f
  • Loading branch information
r-barnes authored and facebook-github-bot committed Jan 25, 2024
1 parent e6fe824 commit c82f824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fbpcf/mpc/IMpcGame.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace fbpcf {
template <class InputDataType, class OutputDataType>
class IMpcGame {
public:
virtual ~IMpcGame(){};
virtual ~IMpcGame() {}

OutputDataType perfPlay(const InputDataType& inputData) {
auto decorator = fbpcf::perf::decorate(
Expand Down

0 comments on commit c82f824

Please sign in to comment.