Skip to content

Commit

Permalink
C++ formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed May 21, 2024
1 parent e8ccf38 commit 13adbca
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions cpp/Manual/lifecycle/Scanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1783,10 +1783,7 @@ yy_scan_buffer(char* base, yy_size_t size)
* yy_scan_bytes() instead.
*/
YY_BUFFER_STATE
yy_scan_string(yyconst char* yystr)
{
return yy_scan_bytes(yystr, strlen(yystr));
}
yy_scan_string(yyconst char* yystr) { return yy_scan_bytes(yystr, strlen(yystr)); }

/** Setup the input buffer state to scan the given bytes. The next call to yylex() will
* scan from a @e copy of @a bytes.
Expand Down

0 comments on commit 13adbca

Please sign in to comment.