Skip to content

Commit

Permalink
Remove extra semi colon from folly/experimental/io/AsyncIoUringSocket…
Browse files Browse the repository at this point in the history
….cpp

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

If the code compiles, this is safe to land.

Reviewed By: Orvid

Differential Revision: D52965955

fbshipit-source-id: a2dbf4bd3e9c0c3fd934fedb468643de4b0b7fda
  • Loading branch information
r-barnes authored and facebook-github-bot committed Jan 24, 2024
1 parent 8b12fc2 commit 914a4f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion folly/experimental/io/AsyncIoUringSocket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ void AsyncIoUringSocket::ReadSqe::callback(int res, uint32_t flags) noexcept {
res,
")");
break;
};
}
readCallback_->readErr(AsyncSocketException(err, std::move(error)));
} else {
uint64_t const cb_was = setReadCbCount_;
Expand Down

0 comments on commit 914a4f1

Please sign in to comment.