From 4772c0f7d71ddb61551581987243260f53d3fe06 Mon Sep 17 00:00:00 2001 From: Richard Barnes Date: Wed, 20 Mar 2024 12:26:55 -0700 Subject: [PATCH] Remove extra semi colon from fb_mysql/8.0.28/rocksdb/util/murmurhash.cc (#537) Summary: Pull Request resolved: https://github.com/facebookresearch/fbpcf/pull/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 --- fbpcf/mpc/EmpApp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fbpcf/mpc/EmpApp.h b/fbpcf/mpc/EmpApp.h index 68baf5e8..542da941 100644 --- a/fbpcf/mpc/EmpApp.h +++ b/fbpcf/mpc/EmpApp.h @@ -39,7 +39,7 @@ class EmpApp { useTls_{false}, tlsDir_{""} {} - virtual ~EmpApp(){}; + virtual ~EmpApp() {} virtual void run() { auto io = std::make_unique( @@ -51,7 +51,7 @@ class EmpApp { auto output = game.perfPlay(inputData); putOutputData(output); - }; + } protected: virtual InputDataType getInputData() = 0;