Skip to content

Commit

Permalink
Remove extraneous ';'
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgbrown committed Jun 18, 2022
1 parent 81491e0 commit a075d2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/google/protobuf/stubs/strutil.h
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit a075d2f

Please sign in to comment.