We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 543e8eb commit 2aff296Copy full SHA for 2aff296
Release/tests/functional/websockets/utilities/test_websocket_server.cpp
@@ -40,8 +40,8 @@
40
#define _WEBSOCKETPP_CONSTEXPR_TOKEN_
41
#else
42
#define _WEBSOCKETPP_NULLPTR_TOKEN_ 0
43
-#endif
44
+#endif /* _MSC_VER >= 1800 */
+#endif /* _WIN32 */
45
46
#if defined(__APPLE__)
47
#include "stdlib.h"
@@ -51,6 +51,11 @@
51
#undef ntohll
52
#undef htonll
53
#endif
54
+
55
+#if defined(__clang__) && defined(ANDROID)
56
+#define _WEBSOCKETPP_NULLPTR_TOKEN_ 0
57
+#endif
58
59
#include <websocketpp/config/asio_no_tls.hpp>
60
#include <websocketpp/server.hpp>
61
0 commit comments