Skip to content

Commit

Permalink
Remove extra semi colon from proxygen/external/http_parser/http_parse…
Browse files Browse the repository at this point in the history
…r_cpp.cpp

Summary:
`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: dmm-fb

Differential Revision: D51777995

fbshipit-source-id: 32b08133ded51e9f65b0fb1a5474b2b5eb92fba1
  • Loading branch information
r-barnes authored and facebook-github-bot committed Dec 13, 2023
1 parent 378bdc0 commit 9c0e9b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxygen/external/http_parser/http_parser_cpp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@ size_t http_parser_execute_options (http_parser *parser,
if (ch == ' ' && matcher[parser->index] == '\0') {
state = s_req_spaces_before_url;
} else if (ch == matcher[parser->index]) {
; /* nada */
/* nada */
} else if (parser->method == HTTP_CONNECT) {
if (parser->index == 1 && ch == 'H') {
parser->method = HTTP_CHECKOUT;
Expand Down

0 comments on commit 9c0e9b7

Please sign in to comment.