We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents edb26d7 + 0f3a36a commit 8752687Copy full SHA for 8752687
websocketpp/config/core_client.hpp
@@ -34,7 +34,11 @@
34
#include <websocketpp/common/stdint.hpp>
35
36
// Concurrency
37
+#ifndef _WEBSOCKETPP_NO_THREADING_
38
#include <websocketpp/concurrency/basic.hpp>
39
+#else
40
+#include <websocketpp/concurrency/none.hpp>
41
+#endif
42
43
// Transport
44
#include <websocketpp/transport/iostream/endpoint.hpp>
@@ -68,7 +72,11 @@ struct core_client {
68
72
typedef core_client type;
69
73
70
74
// Concurrency policy
75
71
76
typedef websocketpp::concurrency::basic concurrency_type;
77
78
+ typedef websocketpp::concurrency::none concurrency_type;
79
80
81
// HTTP Parser Policies
82
typedef http::parser::request request_type;
0 commit comments