Remove extraneous ';'

This commit is contained in:
Jorg Brown 2022-06-18 15:27:10 -07:00
parent 81491e034f
commit a075d2fb14

View File

@ -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()