Skip to content

Commit

Permalink
remove comment / formating
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason2866 authored Nov 22, 2023
1 parent a78841a commit 13d55a7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cores/esp32/IPAddress.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ IPAddress::IPAddress() {
#else
_ip = *IP_ADDR_ANY;
#endif
// _ip = *IP_ANY_TYPE; // lwIP's v4-or-v6 generic address
}

IPAddress::IPAddress(const IPAddress& from)
Expand Down Expand Up @@ -80,9 +79,9 @@ IPAddress::IPAddress(IPType type, const uint8_t *address, uint8_t zone) {
setZone(zone);
} else {
#if LWIP_IPV6
_ip = *IP6_ADDR_ANY;
_ip = *IP6_ADDR_ANY;
#else
_ip = *IP_ADDR_ANY;
_ip = *IP_ADDR_ANY;
#endif
}

Expand Down

0 comments on commit 13d55a7

Please sign in to comment.