We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6e12eb commit cc6da05Copy full SHA for cc6da05
libraries/WiFi/src/WiFiClient.cpp
@@ -197,15 +197,6 @@ WiFiClient::~WiFiClient()
197
stop();
198
}
199
200
-WiFiClient & WiFiClient::operator=(const WiFiClient &other)
201
-{
202
- stop();
203
- clientSocketHandle = other.clientSocketHandle;
204
- _rxBuffer = other._rxBuffer;
205
- _connected = other._connected;
206
- return *this;
207
-}
208
-
209
void WiFiClient::stop()
210
{
211
clientSocketHandle = NULL;
libraries/WiFi/src/WiFiClient.h
@@ -71,7 +71,6 @@ class WiFiClient : public ESPLwIPClient
71
72
return connected();
73
74
- WiFiClient & operator=(const WiFiClient &other);
75
bool operator==(const bool value)
76
77
return bool() == value;
0 commit comments