Skip to content

Commit 9172976

Browse files
committed
WiFiClient: fix Wreorder
1 parent ba39680 commit 9172976

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libraries/WiFiS3/src/WiFiClient.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,13 @@ class WiFiClient : public Client {
7070

7171
protected:
7272
int _sock;
73+
bool destroy_at_distructor;
7374
int _connectionTimeout = 0;
7475
void getSocket();
7576
static constexpr uint32_t RX_BUFFER_DIM = 1024;
7677
std::shared_ptr<FifoBuffer<uint8_t,RX_BUFFER_DIM>> rx_buffer;
7778
int _read();
7879
void read_if_needed(size_t s);
79-
bool destroy_at_distructor;
80-
8180

8281
};
8382

0 commit comments

Comments
 (0)