From 5f45476dc1b785ef5412e2d2f973c3caa764c0a8 Mon Sep 17 00:00:00 2001 From: Leon Krause Date: Fri, 5 Oct 2018 22:59:05 +0200 Subject: Fix warnings in HTML5 build outside platform files --- core/math/math_funcs.h | 2 +- drivers/unix/net_socket_posix.cpp | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/core/math/math_funcs.h b/core/math/math_funcs.h index 472baf0484..9a486a49d0 100644 --- a/core/math/math_funcs.h +++ b/core/math/math_funcs.h @@ -46,7 +46,7 @@ class Math { public: Math() {} // useless to instance - static const uint64_t RANDOM_MAX = 4294967295; + static const uint64_t RANDOM_MAX = 0xFFFFFFFF; static _ALWAYS_INLINE_ double sin(double p_x) { return ::sin(p_x); } static _ALWAYS_INLINE_ float sin(float p_x) { return ::sinf(p_x); } diff --git a/drivers/unix/net_socket_posix.cpp b/drivers/unix/net_socket_posix.cpp index 3f03175403..2cc2032cbb 100644 --- a/drivers/unix/net_socket_posix.cpp +++ b/drivers/unix/net_socket_posix.cpp @@ -42,12 +42,8 @@ #include #include #ifndef NO_FCNTL -#ifdef __HAIKU__ #include #else -#include -#endif -#else #include #endif #include -- cgit v1.2.3