Skip to content

Commit

Permalink
Remove extra semi colon from fizz/protocol/StateMachine-inl.h
Browse files Browse the repository at this point in the history
Summary:
`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: NickR23

Differential Revision: D52969090

fbshipit-source-id: db72e3ee224b0082293cfed03ad74bcf24c218b9
  • Loading branch information
r-barnes authored and facebook-github-bot committed Jan 29, 2024
1 parent 020b2a1 commit 7faea9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fizz/protocol/StateMachine-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class EventHandler : public EventHandlerBase<SM, state, event> {
static typename sm::Actions handle( \
const typename sm::State&, \
typename sm::Param param); \
};
}

template <typename SM>
typename StateMachine<SM>::EventHandlerFun StateMachine<SM>::getHandler(
Expand Down
2 changes: 1 addition & 1 deletion fizz/server/ServerProtocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ FIZZ_DECLARE_EVENT_HANDLER(
StateEnum::ExpectingCertificate,
Event::Certificate,
StateEnum::ExpectingCertificateVerify,
StateEnum::ExpectingFinished)
StateEnum::ExpectingFinished);

FIZZ_DECLARE_EVENT_HANDLER(
ServerTypes,
Expand Down

0 comments on commit 7faea9d

Please sign in to comment.