From a26cbcef924e4335f02b4327eceb5d0fab718ecc Mon Sep 17 00:00:00 2001 From: xiphon Date: Wed, 11 Mar 2020 17:58:37 +0000 Subject: [PATCH] easylogging++: fix 'ELPP_OS_EMSCRIPTEN is not defined' warning --- external/easylogging++/easylogging++.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/external/easylogging++/easylogging++.h b/external/easylogging++/easylogging++.h index 03d62bfb6..0b65461bc 100644 --- a/external/easylogging++/easylogging++.h +++ b/external/easylogging++/easylogging++.h @@ -127,6 +127,8 @@ #endif #if defined(__EMSCRIPTEN__) # define ELPP_OS_EMSCRIPTEN 1 +#else +# define ELPP_OS_EMSCRIPTEN 0 #endif #if (defined(__DragonFly__)) # define ELPP_OS_DRAGONFLY 1