Skip to content

Commit

Permalink
Remove extra semi colon from proxygen/lib/http/session/HTTPTransactio…
Browse files Browse the repository at this point in the history
…n.cpp

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

If the code compiles, this is safe to land.

Reviewed By: dmm-fb

Differential Revision: D51777907

fbshipit-source-id: 59b1c55ac084d8c47897c81f06638a579e7eab67
  • Loading branch information
r-barnes authored and facebook-github-bot committed Dec 2, 2023
1 parent d1fbef1 commit 3ca5204
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion proxygen/lib/http/session/HTTPTransaction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ HTTPException stateMachineError(HTTPException::Direction dir, std::string msg) {
invariantViolation( \
HTTPException(HTTPException::Direction::INGRESS_AND_EGRESS, #X)); \
return; \
}
} \
static_assert(true, "semicolon required")

uint64_t HTTPTransaction::egressBufferLimit_ = kMaxBufferPerTxn;

Expand Down

0 comments on commit 3ca5204

Please sign in to comment.