We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd148a0 commit f6932b1Copy full SHA for f6932b1
1 file changed
src/asio_prefix.h
@@ -1,13 +1,23 @@
1
#pragma once
2
3
+#ifndef ASIO_STANDALONE
4
#if SIO_TLS
5
#include <boost/asio/ssl/context.hpp>
6
#endif
7
8
#include <boost/asio/steady_timer.hpp>
9
#include <boost/system/error_code.hpp>
10
#include <boost/asio/io_service.hpp>
11
+#else
12
+#if SIO_TLS
13
+#include <asio/ssl/context.hpp>
14
+#endif
15
16
+#include <asio/steady_timer.hpp>
17
+#include <asio/io_service.hpp>
18
19
+
20
21
namespace asio {
22
using namespace boost::asio;
23
@@ -49,3 +59,4 @@ namespace asio {
49
59
using boost::system::error_code;
50
60
namespace errc = boost::system::errc;
51
61
} // namespace asio
62
0 commit comments