compile all platforms

This commit is contained in:
proddy
2024-08-02 12:34:07 +02:00
parent 3159561cfb
commit 60c1da327b

View File

@@ -6,6 +6,8 @@ For a copy, see <https://opensource.org/licenses/MIT> or
the LICENSE file.
*/
#if defined(__linux__) || defined(_WIN32) || defined(__APPLE__)
#include "ClientPosixIPAddress.h"
IPAddress::IPAddress()
@@ -26,3 +28,5 @@ IPAddress::IPAddress(uint32_t address)
IPAddress::operator uint32_t() {
return _address;
}
#endif