File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ IPAddress& IPAddress::operator=(uint32_t address)
238238bool IPAddress::operator ==(const IPAddress& addr) const {
239239 return (addr._type == _type)
240240 && (memcmp (addr._address .bytes , _address.bytes , sizeof (_address.bytes )) == 0 );
241- };
241+ }
242242
243243bool IPAddress::operator ==(const uint8_t * addr) const
244244{
@@ -252,14 +252,14 @@ uint8_t IPAddress::operator[](int index) const {
252252 return _address.bytes [IPADDRESS_V4_BYTES_INDEX + index];
253253 }
254254 return _address.bytes [index];
255- };
255+ }
256256
257257uint8_t & IPAddress::operator [](int index) {
258258 if (_type == IPv4) {
259259 return _address.bytes [IPADDRESS_V4_BYTES_INDEX + index];
260260 }
261261 return _address.bytes [index];
262- };
262+ }
263263
264264size_t IPAddress::printTo (Print& p) const
265265{
You can’t perform that action at this time.
0 commit comments