Skip to content

Commit 0af8195

Browse files
ci(pre-commit): Apply automatic fixes
1 parent e7a4420 commit 0af8195

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AsyncTCP.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ struct lwip_tcp_event_packet_t {
148148
} dns;
149149
};
150150

151-
inline lwip_tcp_event_packet_t(lwip_tcp_event_t _event, AsyncClient *_client) : next(nullptr), event(_event), client(_client) {};
151+
inline lwip_tcp_event_packet_t(lwip_tcp_event_t _event, AsyncClient *_client) : next(nullptr), event(_event), client(_client){};
152152
};
153153

154154
// Detail class for interacting with AsyncClient internals, but without exposing the API
@@ -174,7 +174,7 @@ class queue_mutex_guard {
174174
bool holds_mutex;
175175

176176
public:
177-
inline queue_mutex_guard() : holds_mutex(xSemaphoreTake(_async_queue_mutex, portMAX_DELAY)) {};
177+
inline queue_mutex_guard() : holds_mutex(xSemaphoreTake(_async_queue_mutex, portMAX_DELAY)){};
178178
inline ~queue_mutex_guard() {
179179
if (holds_mutex) {
180180
xSemaphoreGive(_async_queue_mutex);

0 commit comments

Comments
 (0)