diff options
author | xiphon <xiphon@protonmail.com> | 2020-03-11 17:58:37 +0000 |
---|---|---|
committer | xiphon <xiphon@protonmail.com> | 2020-03-11 17:58:37 +0000 |
commit | a26cbcef924e4335f02b4327eceb5d0fab718ecc (patch) | |
tree | 5f702b0a204f6db5a283a6006340ef4db684dbda | |
parent | Merge pull request #6248 (diff) | |
download | monero-a26cbcef924e4335f02b4327eceb5d0fab718ecc.tar.xz |
easylogging++: fix 'ELPP_OS_EMSCRIPTEN is not defined' warning
-rw-r--r-- | external/easylogging++/easylogging++.h | 2 |
1 files changed, 2 insertions, 0 deletions
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 |