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 fc38c07 commit a332c23Copy full SHA for a332c23
Release/tests/functional/websockets/utilities/stdafx.h
@@ -32,11 +32,13 @@
32
33
#if defined(_WIN32)
34
// Trick Boost.Asio into thinking CE, otherwise _beginthreadex will be used which is banned
35
-// for the Windows Runtime. Then CreateThread will be used instead.
+// for the Windows Runtime pre VS2015. Then CreateThread will be used instead.
36
+#if _MSC_VER < 1900
37
#if defined(__cplusplus_winrt)
38
#define UNDER_CE 1
39
#endif
40
41
+#endif
42
43
#include "cpprest/uri.h"
44
#include "cpprest/asyncrt_utils.h"
0 commit comments