From a075d2fb14ac2efa8076ae0d60449257288ddc21 Mon Sep 17 00:00:00 2001 From: Jorg Brown Date: Sat, 18 Jun 2022 15:27:10 -0700 Subject: [PATCH] Remove extraneous ';' --- src/google/protobuf/stubs/strutil.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/google/protobuf/stubs/strutil.h b/src/google/protobuf/stubs/strutil.h index 8657df2cf2..3eeb727c32 100644 --- a/src/google/protobuf/stubs/strutil.h +++ b/src/google/protobuf/stubs/strutil.h @@ -206,7 +206,7 @@ inline std::string ToUpper(StringPiece s) { PROTOBUF_EXPORT std::string StringReplaceImpl(StringPiece s, StringPiece oldsub, StringPiece newsub, bool replace_all, const char *filename = nullptr, int linenum = 0); -#define StringReplace(s,o,n,all) StringReplaceImpl(s,o,n,all,__FILE__, __LINE__); +#define StringReplace(s,o,n,all) StringReplaceImpl(s,o,n,all,__FILE__, __LINE__) // ---------------------------------------------------------------------- // SplitStringUsing()