diff options
author | luigi1111 <luigi1111w@gmail.com> | 2020-03-13 18:12:19 -0400 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-03-13 18:12:19 -0400 |
commit | f52e0f40c6d9ead9786e90348f4153d0efcb81fb (patch) | |
tree | 56c00f7d6a3758dd6838fc9797d58caf66e0648b | |
parent | Merge pull request #6273 (diff) | |
parent | easylogging++: fix 'ELPP_OS_EMSCRIPTEN is not defined' warning (diff) | |
download | monero-f52e0f40c6d9ead9786e90348f4153d0efcb81fb.tar.xz |
Merge pull request #6383
a26cbce easylogging++: fix 'ELPP_OS_EMSCRIPTEN is not defined' warning (xiphon)
-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 |