Skip to content

Commit

Permalink
AsyncWebSocket: Fix unused arg warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
willmmiles committed Mar 10, 2024
1 parent 3f5c64f commit b6301c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/AsyncWebSocket.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ class AsyncWebSocketMessageBuffer {
AsyncWebSocketMessageBuffer(AsyncWebSocketSharedBuffer b) : _buf(std::move(b)) {};
~AsyncWebSocketMessageBuffer() {};

void operator ++(int i) {};
void operator --(int i) {};
void operator ++(int) {};
void operator --(int) {};
bool reserve(size_t size);
void lock() {};
void unlock() {};
Expand Down

0 comments on commit b6301c5

Please sign in to comment.