passenger 6.0.19 → 6.0.21

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1293) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +65 -3
  3. data/CONTRIBUTORS +2 -0
  4. data/README.md +2 -2
  5. data/bin/passenger-install-nginx-module +4 -4
  6. data/build/integration_tests.rb +2 -1
  7. data/build/support/cxx_dependency_map.rb +155 -54
  8. data/dev/copy_boost_headers +21 -7
  9. data/dev/nginx_version_sha256 +72 -0
  10. data/package.json +15 -15
  11. data/src/agent/AgentMain.cpp +2 -8
  12. data/src/agent/Core/AdminPanelConnector.h +2 -3
  13. data/src/agent/Core/ApiServer.h +1 -1
  14. data/src/agent/Core/ApplicationPool/Pool/StateInspection.cpp +8 -1
  15. data/src/agent/Core/Config.h +6 -3
  16. data/src/agent/Core/Controller/AppResponse.h +0 -1
  17. data/src/agent/Core/Controller/Config.h +2 -2
  18. data/src/agent/Core/Controller/SendRequest.cpp +2 -2
  19. data/src/agent/Core/CoreMain.cpp +1 -0
  20. data/src/agent/Core/ResponseCache.h +3 -2
  21. data/src/agent/Core/SecurityUpdateChecker.h +1 -1
  22. data/src/agent/Core/SpawningKit/Handshake/Perform.h +4 -4
  23. data/src/agent/Core/SpawningKit/UserSwitchingRules.h +2 -2
  24. data/src/agent/ExecHelper/ExecHelperMain.cpp +10 -12
  25. data/src/agent/FileReadHelper/FileReadHelperMain.cpp +7 -10
  26. data/src/agent/MainFunctions.h +38 -0
  27. data/src/agent/Shared/ApiServerUtils.h +3 -2
  28. data/src/agent/Shared/Fundamentals/Initialization.cpp +1 -1
  29. data/src/agent/SpawnEnvSetupper/SpawnEnvSetupperMain.cpp +2 -3
  30. data/src/agent/SystemMetrics/SystemMetricsMain.cpp +1 -0
  31. data/src/agent/TempDirToucher/TempDirToucherMain.cpp +6 -4
  32. data/src/agent/Watchdog/ApiServer.h +1 -1
  33. data/src/agent/Watchdog/Config.h +1 -1
  34. data/src/agent/Watchdog/WatchdogMain.cpp +5 -12
  35. data/src/apache2_module/Hooks.cpp +26 -1
  36. data/src/cxx_supportlib/ConfigKit/Common.h +1 -1
  37. data/src/cxx_supportlib/Constants.h +1 -1
  38. data/src/cxx_supportlib/DataStructures/StringKeyTable.h +1 -1
  39. data/src/cxx_supportlib/FileTools/PathManip.cpp +10 -1
  40. data/src/cxx_supportlib/IOTools/IOUtils.cpp +2 -6
  41. data/src/cxx_supportlib/Integrations/LibevJsonUtils.h +3 -3
  42. data/src/cxx_supportlib/JsonTools/CBindings.cpp +0 -2
  43. data/src/cxx_supportlib/JsonTools/JsonUtils.h +4 -4
  44. data/src/cxx_supportlib/LoggingKit/Context.h +16 -21
  45. data/src/cxx_supportlib/LoggingKit/Forward.h +0 -2
  46. data/src/cxx_supportlib/LoggingKit/Implementation.cpp +36 -72
  47. data/src/cxx_supportlib/MemoryKit/mbuf.cpp +12 -4
  48. data/src/cxx_supportlib/MemoryKit/mbuf.h +1 -1
  49. data/src/cxx_supportlib/ProcessManagement/Utils.cpp +1 -1
  50. data/src/cxx_supportlib/ResourceLocator.h +1 -1
  51. data/src/cxx_supportlib/SecurityKit/Crypto.cpp +3 -94
  52. data/src/cxx_supportlib/SecurityKit/Crypto.h +0 -8
  53. data/src/cxx_supportlib/ServerKit/Context.h +6 -0
  54. data/src/cxx_supportlib/ServerKit/Errors.h +3 -2
  55. data/src/cxx_supportlib/ServerKit/HttpHeaderParser.h +99 -64
  56. data/src/cxx_supportlib/ServerKit/HttpHeaderParserState.h +4 -1
  57. data/src/cxx_supportlib/ServerKit/HttpRequest.h +2 -2
  58. data/src/cxx_supportlib/ServerKit/HttpServer.h +3 -2
  59. data/src/cxx_supportlib/ServerKit/llerrors.h +84 -0
  60. data/src/cxx_supportlib/ServerKit/llhttp.c +10168 -0
  61. data/src/cxx_supportlib/ServerKit/llhttp.h +903 -0
  62. data/src/cxx_supportlib/ServerKit/llhttp_api.c +510 -0
  63. data/src/cxx_supportlib/ServerKit/llhttp_http.c +170 -0
  64. data/src/cxx_supportlib/ServerKit/llversion.h +12 -0
  65. data/src/cxx_supportlib/ServerKit/url_parser.c +574 -0
  66. data/src/cxx_supportlib/ServerKit/url_parser.h +74 -0
  67. data/src/cxx_supportlib/StaticString.h +3 -1
  68. data/src/cxx_supportlib/StrIntTools/DateParsing.h +1 -1
  69. data/src/cxx_supportlib/StrIntTools/StrIntUtils.cpp +12 -3
  70. data/src/cxx_supportlib/StrIntTools/StrIntUtils.h +5 -0
  71. data/src/cxx_supportlib/SystemTools/SystemMetricsCollector.h +2 -2
  72. data/src/cxx_supportlib/SystemTools/UserDatabase.cpp +14 -14
  73. data/src/cxx_supportlib/SystemTools/UserDatabase.h +6 -10
  74. data/src/cxx_supportlib/Utils/AnsiColorConstants.h +11 -9
  75. data/src/cxx_supportlib/Utils.cpp +1 -1
  76. data/src/cxx_supportlib/oxt/implementation.cpp +1 -2
  77. data/src/cxx_supportlib/oxt/system_calls.cpp +1 -1
  78. data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_executor.hpp +26 -32
  79. data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_handler.hpp +194 -56
  80. data/src/cxx_supportlib/vendor-modified/boost/asio/any_io_executor.hpp +34 -42
  81. data/src/cxx_supportlib/vendor-modified/boost/asio/append.hpp +10 -23
  82. data/src/cxx_supportlib/vendor-modified/boost/asio/as_tuple.hpp +21 -34
  83. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +26 -45
  84. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +26 -43
  85. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +30 -52
  86. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_immediate_executor.hpp +282 -0
  87. data/src/cxx_supportlib/vendor-modified/boost/asio/associator.hpp +1 -1
  88. data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +178 -863
  89. data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +1 -1
  90. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +64 -98
  91. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +17 -22
  92. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_file.hpp +18 -23
  93. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_io_object.hpp +4 -8
  94. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_random_access_file.hpp +30 -42
  95. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +65 -96
  96. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_readable_pipe.hpp +20 -29
  97. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +36 -48
  98. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_serial_port.hpp +31 -44
  99. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_signal_set.hpp +73 -23
  100. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +34 -45
  101. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +108 -151
  102. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_iostream.hpp +6 -82
  103. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_streambuf.hpp +6 -51
  104. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_file.hpp +30 -40
  105. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +50 -76
  106. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf.hpp +13 -15
  107. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf_fwd.hpp +3 -3
  108. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +23 -32
  109. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_writable_pipe.hpp +20 -29
  110. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_allocator.hpp +97 -299
  111. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +97 -288
  112. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +90 -288
  113. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_immediate_executor.hpp +551 -0
  114. data/src/cxx_supportlib/vendor-modified/boost/asio/buffer.hpp +365 -290
  115. data/src/cxx_supportlib/vendor-modified/boost/asio/buffer_registration.hpp +29 -39
  116. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream.hpp +27 -39
  117. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream_fwd.hpp +1 -1
  118. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream.hpp +33 -49
  119. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream_fwd.hpp +1 -1
  120. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream.hpp +27 -39
  121. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream_fwd.hpp +1 -1
  122. data/src/cxx_supportlib/vendor-modified/boost/asio/buffers_iterator.hpp +4 -4
  123. data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_signal.hpp +25 -85
  124. data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_state.hpp +16 -16
  125. data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_type.hpp +8 -25
  126. data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +17 -17
  127. data/src/cxx_supportlib/vendor-modified/boost/asio/completion_condition.hpp +1 -1
  128. data/src/cxx_supportlib/vendor-modified/boost/asio/compose.hpp +60 -272
  129. data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +52 -79
  130. data/src/cxx_supportlib/vendor-modified/boost/asio/connect_pipe.hpp +1 -1
  131. data/src/cxx_supportlib/vendor-modified/boost/asio/consign.hpp +11 -24
  132. data/src/cxx_supportlib/vendor-modified/boost/asio/coroutine.hpp +2 -1
  133. data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer.hpp +1 -1
  134. data/src/cxx_supportlib/vendor-modified/boost/asio/defer.hpp +37 -34
  135. data/src/cxx_supportlib/vendor-modified/boost/asio/deferred.hpp +302 -262
  136. data/src/cxx_supportlib/vendor-modified/boost/asio/detached.hpp +12 -20
  137. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array.hpp +2 -10
  138. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array_fwd.hpp +2 -4
  139. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/assert.hpp +1 -1
  140. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/atomic_count.hpp +5 -13
  141. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_cancellation_state.hpp +21 -20
  142. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_completion_cond.hpp +2 -2
  143. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +129 -563
  144. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/blocking_executor_op.hpp +3 -3
  145. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_resize_guard.hpp +1 -1
  146. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_sequence_adapter.hpp +3 -7
  147. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffered_stream_storage.hpp +1 -1
  148. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/call_stack.hpp +1 -1
  149. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono.hpp +2 -23
  150. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono_time_traits.hpp +1 -1
  151. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_handler.hpp +4 -4
  152. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/composed_work.hpp +21 -97
  153. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/concurrency_hint.hpp +1 -1
  154. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_event.hpp +1 -1
  155. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_mutex.hpp +1 -1
  156. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +155 -963
  157. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/consuming_buffers.hpp +3 -11
  158. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstddef.hpp +1 -5
  159. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstdint.hpp +2 -24
  160. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/date_time_fwd.hpp +1 -1
  161. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +4 -4
  162. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dependent_type.hpp +1 -1
  163. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_ops.hpp +1 -1
  164. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_read_op.hpp +41 -3
  165. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_write_op.hpp +40 -3
  166. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +20 -3
  167. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +20 -3
  168. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/event.hpp +3 -5
  169. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/eventfd_select_interrupter.hpp +1 -1
  170. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/exception.hpp +2 -13
  171. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_function.hpp +8 -60
  172. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_op.hpp +6 -6
  173. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fd_set_adapter.hpp +1 -1
  174. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fenced_block.hpp +3 -43
  175. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +1 -12
  176. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/future.hpp +9 -10
  177. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/global.hpp +3 -5
  178. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +41 -104
  179. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_cont_helpers.hpp +1 -1
  180. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_tracking.hpp +3 -3
  181. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +9 -15
  182. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +101 -123
  183. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/hash_map.hpp +1 -1
  184. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/buffer_sequence_adapter.ipp +1 -1
  185. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/descriptor_ops.ipp +36 -15
  186. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +2 -2
  187. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +13 -4
  188. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +2 -2
  189. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +17 -8
  190. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/eventfd_select_interrupter.ipp +1 -1
  191. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/handler_tracking.ipp +5 -5
  192. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_descriptor_service.ipp +2 -2
  193. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_file_service.ipp +1 -1
  194. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.hpp +1 -1
  195. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.ipp +69 -35
  196. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_socket_service_base.ipp +2 -2
  197. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +2 -2
  198. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +15 -6
  199. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/null_event.ipp +1 -1
  200. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/pipe_select_interrupter.ipp +1 -1
  201. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_event.ipp +1 -1
  202. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_mutex.ipp +1 -1
  203. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_serial_port_service.ipp +1 -1
  204. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_thread.ipp +1 -1
  205. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_tss_ptr.ipp +1 -1
  206. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_descriptor_service.ipp +9 -9
  207. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_socket_service_base.ipp +26 -18
  208. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/resolver_service_base.ipp +3 -3
  209. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/scheduler.ipp +2 -1
  210. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +2 -2
  211. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +12 -4
  212. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.hpp +2 -3
  213. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.ipp +1 -1
  214. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/signal_set_service.ipp +57 -4
  215. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_ops.ipp +63 -5
  216. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_select_interrupter.ipp +1 -1
  217. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +47 -68
  218. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.ipp +1 -1
  219. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.hpp +2 -3
  220. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.ipp +1 -1
  221. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/thread_context.ipp +1 -1
  222. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/throw_error.ipp +1 -1
  223. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +12 -12
  224. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_set.ipp +1 -1
  225. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_defer.hpp +209 -0
  226. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_dispatch.hpp +195 -0
  227. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_post.hpp +209 -0
  228. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_control.hpp +1 -1
  229. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_object_impl.hpp +6 -10
  230. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_at_op.hpp +6 -3
  231. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_op.hpp +6 -3
  232. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_service.hpp +17 -9
  233. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_at_op.hpp +6 -3
  234. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_op.hpp +6 -3
  235. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_file_service.hpp +2 -3
  236. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_null_buffers_op.hpp +5 -4
  237. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_operation.hpp +1 -1
  238. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_service.hpp +4 -3
  239. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_accept_op.hpp +11 -12
  240. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_connect_op.hpp +5 -4
  241. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recv_op.hpp +6 -3
  242. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvfrom_op.hpp +7 -4
  243. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvmsg_op.hpp +6 -3
  244. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_send_op.hpp +6 -3
  245. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_sendto_op.hpp +6 -3
  246. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service.hpp +11 -13
  247. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service_base.hpp +9 -9
  248. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_wait_op.hpp +5 -4
  249. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_buffer_sequence.hpp +7 -49
  250. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_executor.hpp +1 -1
  251. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/keyword_tss_ptr.hpp +1 -1
  252. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +20 -3
  253. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/limits.hpp +1 -6
  254. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/local_free_on_block_exit.hpp +1 -1
  255. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +13 -43
  256. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/mutex.hpp +3 -5
  257. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/non_const_lvalue.hpp +4 -15
  258. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/noncopyable.hpp +1 -1
  259. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_event.hpp +1 -1
  260. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_fenced_block.hpp +1 -1
  261. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_global.hpp +1 -1
  262. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_mutex.hpp +1 -1
  263. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_reactor.hpp +1 -1
  264. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_signal_blocker.hpp +1 -1
  265. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_socket_service.hpp +3 -3
  266. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_static_mutex.hpp +1 -1
  267. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_thread.hpp +1 -1
  268. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_tss_ptr.hpp +1 -1
  269. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/object_pool.hpp +1 -1
  270. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/op_queue.hpp +1 -1
  271. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/operation.hpp +1 -1
  272. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pipe_select_interrupter.hpp +1 -1
  273. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +1 -1
  274. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_event.hpp +1 -1
  275. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_fd_set_adapter.hpp +1 -1
  276. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_global.hpp +1 -1
  277. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_mutex.hpp +1 -1
  278. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_serial_port_service.hpp +1 -1
  279. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_signal_blocker.hpp +1 -1
  280. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_static_mutex.hpp +1 -1
  281. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_thread.hpp +1 -1
  282. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_tss_ptr.hpp +1 -1
  283. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +1 -1
  284. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +61 -25
  285. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_null_buffers_op.hpp +37 -4
  286. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_accept_op.hpp +89 -12
  287. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_connect_op.hpp +41 -4
  288. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recv_op.hpp +40 -4
  289. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvfrom_op.hpp +41 -4
  290. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvmsg_op.hpp +41 -4
  291. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_send_op.hpp +41 -4
  292. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_sendto_op.hpp +40 -4
  293. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +20 -20
  294. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +135 -38
  295. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_wait_op.hpp +37 -4
  296. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor.hpp +1 -1
  297. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +1 -1
  298. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +1 -1
  299. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/recycling_allocator.hpp +2 -2
  300. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/regex_fwd.hpp +4 -13
  301. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +4 -4
  302. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_op.hpp +1 -1
  303. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_query_op.hpp +4 -4
  304. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service.hpp +3 -3
  305. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service_base.hpp +1 -1
  306. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler.hpp +1 -1
  307. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_operation.hpp +1 -1
  308. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_task.hpp +1 -1
  309. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_thread_info.hpp +1 -1
  310. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_lock.hpp +1 -1
  311. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_ptr.hpp +1 -1
  312. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_interrupter.hpp +1 -1
  313. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +20 -3
  314. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/service_registry.hpp +2 -3
  315. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_blocker.hpp +1 -1
  316. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_handler.hpp +3 -3
  317. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_init.hpp +1 -1
  318. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_op.hpp +1 -1
  319. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_set_service.hpp +12 -3
  320. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_holder.hpp +1 -1
  321. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_ops.hpp +1 -1
  322. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_option.hpp +1 -1
  323. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_select_interrupter.hpp +1 -1
  324. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_types.hpp +11 -1
  325. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/source_location.hpp +1 -1
  326. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/static_mutex.hpp +3 -5
  327. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_event.hpp +1 -6
  328. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_fenced_block.hpp +1 -6
  329. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_global.hpp +1 -6
  330. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_mutex.hpp +1 -6
  331. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_static_mutex.hpp +1 -6
  332. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_thread.hpp +1 -6
  333. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_executor_service.hpp +13 -13
  334. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_service.hpp +1 -1
  335. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/string_view.hpp +1 -1
  336. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread.hpp +3 -5
  337. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_context.hpp +1 -1
  338. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_group.hpp +1 -1
  339. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +12 -22
  340. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_error.hpp +1 -1
  341. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_exception.hpp +1 -1
  342. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +1 -1
  343. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_base.hpp +1 -1
  344. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +2 -2
  345. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_set.hpp +1 -1
  346. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler.hpp +1 -1
  347. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler_fwd.hpp +1 -1
  348. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/tss_ptr.hpp +1 -1
  349. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/type_traits.hpp +104 -90
  350. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/utility.hpp +4 -4
  351. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_handler.hpp +3 -3
  352. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +1 -1
  353. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/winsock_init.hpp +2 -2
  354. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +20 -34
  355. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wrapped_handler.hpp +7 -117
  356. data/src/cxx_supportlib/vendor-modified/boost/asio/dispatch.hpp +36 -34
  357. data/src/cxx_supportlib/vendor-modified/boost/asio/error.hpp +1 -1
  358. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/allocator.hpp +34 -112
  359. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +268 -991
  360. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bad_executor.hpp +3 -4
  361. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking.hpp +296 -536
  362. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking_adaptation.hpp +232 -409
  363. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context.hpp +20 -73
  364. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context_as.hpp +30 -72
  365. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/executor.hpp +24 -170
  366. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/bad_executor.ipp +3 -3
  367. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/invocable_archetype.hpp +2 -30
  368. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/mapping.hpp +240 -398
  369. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/occupancy.hpp +20 -73
  370. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/outstanding_work.hpp +149 -296
  371. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/prefer_only.hpp +56 -59
  372. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/relationship.hpp +149 -296
  373. data/src/cxx_supportlib/vendor-modified/boost/asio/execution.hpp +1 -16
  374. data/src/cxx_supportlib/vendor-modified/boost/asio/execution_context.hpp +1 -25
  375. data/src/cxx_supportlib/vendor-modified/boost/asio/executor.hpp +59 -43
  376. data/src/cxx_supportlib/vendor-modified/boost/asio/executor_work_guard.hpp +56 -61
  377. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/append.hpp +1 -1
  378. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_single.hpp +20 -24
  379. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_tuple.hpp +1 -1
  380. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/awaitable_operators.hpp +7 -7
  381. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_channel.hpp +56 -34
  382. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_concurrent_channel.hpp +56 -34
  383. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/cancellation_condition.hpp +25 -28
  384. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel.hpp +3 -3
  385. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_error.hpp +1 -1
  386. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_traits.hpp +15 -15
  387. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_composed.hpp +5 -4
  388. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_spawn.hpp +1 -1
  389. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/concurrent_channel.hpp +3 -3
  390. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro.hpp +1 -1
  391. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro_traits.hpp +1 -1
  392. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/deferred.hpp +1 -1
  393. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_handler.hpp +10 -13
  394. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_message.hpp +27 -20
  395. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_operation.hpp +193 -38
  396. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_payload.hpp +143 -14
  397. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_receive_op.hpp +24 -9
  398. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_functions.hpp +77 -17
  399. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_op.hpp +20 -12
  400. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_service.hpp +50 -50
  401. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_completion_handler.hpp +3 -3
  402. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_promise_allocator.hpp +1 -1
  403. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/has_signature.hpp +1 -1
  404. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/impl/channel_service.hpp +46 -34
  405. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/partial_promise.hpp +1 -1
  406. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +33 -96
  407. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/channel_error.ipp +2 -2
  408. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/co_composed.hpp +62 -20
  409. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/coro.hpp +48 -45
  410. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +56 -60
  411. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +18 -4
  412. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_coro.hpp +5 -5
  413. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_promise.hpp +3 -3
  414. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +27 -31
  415. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/prepend.hpp +1 -1
  416. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/promise.hpp +1 -1
  417. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +15 -21
  418. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_promise.hpp +13 -13
  419. data/src/cxx_supportlib/vendor-modified/boost/asio/file_base.hpp +1 -1
  420. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/basic_endpoint.hpp +2 -6
  421. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/datagram_protocol.hpp +4 -4
  422. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/endpoint.hpp +1 -1
  423. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/impl/endpoint.ipp +1 -1
  424. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/raw_protocol.hpp +4 -4
  425. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/seq_packet_protocol.hpp +4 -4
  426. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/stream_protocol.hpp +4 -4
  427. data/src/cxx_supportlib/vendor-modified/boost/asio/handler_continuation_hook.hpp +1 -1
  428. data/src/cxx_supportlib/vendor-modified/boost/asio/high_resolution_timer.hpp +1 -6
  429. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_completion_executor.ipp +10 -14
  430. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_io_executor.ipp +10 -17
  431. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/append.hpp +37 -100
  432. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/as_tuple.hpp +99 -107
  433. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +66 -25
  434. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +55 -178
  435. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +55 -178
  436. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancellation_signal.ipp +1 -1
  437. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +123 -73
  438. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +84 -234
  439. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.hpp +1 -1
  440. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.ipp +1 -1
  441. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/consign.hpp +32 -97
  442. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/deferred.hpp +73 -31
  443. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/detached.hpp +5 -58
  444. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/error.ipp +4 -4
  445. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.hpp +3 -35
  446. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.ipp +1 -1
  447. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.hpp +60 -43
  448. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.ipp +3 -3
  449. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.hpp +39 -56
  450. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.ipp +2 -1
  451. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/multiple_exceptions.ipp +4 -8
  452. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/prepend.hpp +36 -98
  453. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +206 -429
  454. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +60 -206
  455. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +456 -970
  456. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +43 -411
  457. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.hpp +1 -1
  458. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.ipp +1 -1
  459. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +207 -423
  460. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.hpp +1 -3
  461. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.hpp +2 -2
  462. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.ipp +2 -2
  463. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_executor.hpp +19 -25
  464. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.hpp +32 -109
  465. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.ipp +5 -4
  466. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +2 -2
  467. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_future.hpp +79 -425
  468. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +213 -427
  469. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +58 -194
  470. data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +91 -120
  471. data/src/cxx_supportlib/vendor-modified/boost/asio/io_context_strand.hpp +33 -25
  472. data/src/cxx_supportlib/vendor-modified/boost/asio/io_service.hpp +1 -1
  473. data/src/cxx_supportlib/vendor-modified/boost/asio/io_service_strand.hpp +1 -1
  474. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address.hpp +26 -35
  475. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4.hpp +28 -36
  476. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_iterator.hpp +13 -19
  477. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_range.hpp +16 -22
  478. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6.hpp +33 -42
  479. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_iterator.hpp +13 -18
  480. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_range.hpp +15 -20
  481. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/bad_address_cast.hpp +13 -3
  482. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_endpoint.hpp +26 -35
  483. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver.hpp +46 -76
  484. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_entry.hpp +1 -1
  485. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_iterator.hpp +4 -8
  486. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_query.hpp +17 -1
  487. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_results.hpp +9 -13
  488. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/endpoint.hpp +17 -17
  489. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/impl/endpoint.ipp +10 -14
  490. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/socket_option.hpp +1 -1
  491. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/host_name.hpp +1 -1
  492. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/icmp.hpp +7 -7
  493. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.hpp +1 -1
  494. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.ipp +18 -22
  495. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.hpp +1 -1
  496. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.ipp +9 -13
  497. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.hpp +1 -1
  498. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.ipp +24 -32
  499. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/basic_endpoint.hpp +1 -1
  500. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/host_name.ipp +1 -1
  501. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.hpp +1 -1
  502. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.ipp +3 -3
  503. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.hpp +1 -1
  504. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.ipp +3 -3
  505. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/multicast.hpp +1 -1
  506. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v4.hpp +16 -20
  507. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v6.hpp +14 -18
  508. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_base.hpp +1 -1
  509. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_query_base.hpp +1 -1
  510. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/tcp.hpp +7 -7
  511. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/udp.hpp +7 -7
  512. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/unicast.hpp +1 -1
  513. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/v6_only.hpp +1 -1
  514. data/src/cxx_supportlib/vendor-modified/boost/asio/is_applicable_property.hpp +6 -6
  515. data/src/cxx_supportlib/vendor-modified/boost/asio/is_contiguous_iterator.hpp +2 -2
  516. data/src/cxx_supportlib/vendor-modified/boost/asio/is_executor.hpp +1 -1
  517. data/src/cxx_supportlib/vendor-modified/boost/asio/is_read_buffered.hpp +1 -1
  518. data/src/cxx_supportlib/vendor-modified/boost/asio/is_write_buffered.hpp +1 -1
  519. data/src/cxx_supportlib/vendor-modified/boost/asio/local/basic_endpoint.hpp +2 -6
  520. data/src/cxx_supportlib/vendor-modified/boost/asio/local/connect_pair.hpp +1 -1
  521. data/src/cxx_supportlib/vendor-modified/boost/asio/local/datagram_protocol.hpp +4 -4
  522. data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/endpoint.hpp +1 -1
  523. data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +1 -1
  524. data/src/cxx_supportlib/vendor-modified/boost/asio/local/seq_packet_protocol.hpp +86 -0
  525. data/src/cxx_supportlib/vendor-modified/boost/asio/local/stream_protocol.hpp +4 -4
  526. data/src/cxx_supportlib/vendor-modified/boost/asio/multiple_exceptions.hpp +3 -9
  527. data/src/cxx_supportlib/vendor-modified/boost/asio/packaged_task.hpp +1 -61
  528. data/src/cxx_supportlib/vendor-modified/boost/asio/placeholders.hpp +29 -105
  529. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +21 -29
  530. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +24 -34
  531. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor.hpp +1 -1
  532. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor_base.hpp +1 -1
  533. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor.hpp +1 -1
  534. data/src/cxx_supportlib/vendor-modified/boost/asio/post.hpp +36 -34
  535. data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +176 -333
  536. data/src/cxx_supportlib/vendor-modified/boost/asio/prepend.hpp +11 -23
  537. data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +57 -70
  538. data/src/cxx_supportlib/vendor-modified/boost/asio/random_access_file.hpp +1 -1
  539. data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +136 -168
  540. data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +35 -52
  541. data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +256 -298
  542. data/src/cxx_supportlib/vendor-modified/boost/asio/readable_pipe.hpp +1 -1
  543. data/src/cxx_supportlib/vendor-modified/boost/asio/recycling_allocator.hpp +15 -15
  544. data/src/cxx_supportlib/vendor-modified/boost/asio/redirect_error.hpp +7 -9
  545. data/src/cxx_supportlib/vendor-modified/boost/asio/registered_buffer.hpp +35 -47
  546. data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +108 -246
  547. data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +70 -79
  548. data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port.hpp +1 -1
  549. data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_base.hpp +1 -1
  550. data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set.hpp +1 -1
  551. data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set_base.hpp +173 -0
  552. data/src/cxx_supportlib/vendor-modified/boost/asio/socket_base.hpp +1 -1
  553. data/src/cxx_supportlib/vendor-modified/boost/asio/spawn.hpp +127 -161
  554. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context.hpp +1 -3
  555. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context_base.hpp +24 -24
  556. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +3 -3
  557. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +3 -7
  558. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +3 -3
  559. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +3 -7
  560. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/openssl_init.ipp +2 -2
  561. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +16 -75
  562. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_init.hpp +1 -1
  563. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_types.hpp +1 -1
  564. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/password_callback.hpp +1 -1
  565. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +3 -3
  566. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +4 -4
  567. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +15 -19
  568. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/verify_callback.hpp +2 -2
  569. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +3 -3
  570. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/error.hpp +1 -1
  571. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/host_name_verification.hpp +1 -1
  572. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.hpp +1 -1
  573. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +2 -4
  574. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/error.ipp +3 -3
  575. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/host_name_verification.ipp +1 -1
  576. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/rfc2818_verification.ipp +1 -1
  577. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/src.hpp +1 -1
  578. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/rfc2818_verification.hpp +1 -1
  579. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +51 -82
  580. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream_base.hpp +1 -1
  581. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_context.hpp +1 -1
  582. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_mode.hpp +1 -1
  583. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl.hpp +1 -1
  584. data/src/cxx_supportlib/vendor-modified/boost/asio/static_thread_pool.hpp +1 -1
  585. data/src/cxx_supportlib/vendor-modified/boost/asio/steady_timer.hpp +1 -6
  586. data/src/cxx_supportlib/vendor-modified/boost/asio/strand.hpp +91 -118
  587. data/src/cxx_supportlib/vendor-modified/boost/asio/stream_file.hpp +1 -1
  588. data/src/cxx_supportlib/vendor-modified/boost/asio/streambuf.hpp +1 -1
  589. data/src/cxx_supportlib/vendor-modified/boost/asio/system_context.hpp +3 -3
  590. data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +62 -62
  591. data/src/cxx_supportlib/vendor-modified/boost/asio/system_timer.hpp +1 -6
  592. data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +35 -48
  593. data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +91 -273
  594. data/src/cxx_supportlib/vendor-modified/boost/asio/time_traits.hpp +1 -1
  595. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/equality_comparable.hpp +14 -18
  596. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_member.hpp +16 -20
  597. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_free.hpp +16 -20
  598. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_member.hpp +16 -20
  599. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_free.hpp +16 -20
  600. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_member.hpp +16 -20
  601. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_static_constexpr_member.hpp +15 -22
  602. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_free.hpp +16 -20
  603. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_member.hpp +16 -20
  604. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_free.hpp +16 -20
  605. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_member.hpp +16 -20
  606. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_query.hpp +20 -26
  607. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require.hpp +22 -30
  608. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require_concept.hpp +22 -30
  609. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/buffer.hpp +1 -1
  610. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/executor.hpp +1 -1
  611. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/internet.hpp +1 -1
  612. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/io_context.hpp +1 -1
  613. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/net.hpp +1 -1
  614. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/netfwd.hpp +6 -24
  615. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/socket.hpp +1 -1
  616. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/timer.hpp +1 -1
  617. data/src/cxx_supportlib/vendor-modified/boost/asio/unyield.hpp +1 -1
  618. data/src/cxx_supportlib/vendor-modified/boost/asio/use_awaitable.hpp +15 -21
  619. data/src/cxx_supportlib/vendor-modified/boost/asio/use_future.hpp +8 -12
  620. data/src/cxx_supportlib/vendor-modified/boost/asio/uses_executor.hpp +2 -6
  621. data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +2 -2
  622. data/src/cxx_supportlib/vendor-modified/boost/asio/wait_traits.hpp +1 -1
  623. data/src/cxx_supportlib/vendor-modified/boost/asio/writable_pipe.hpp +1 -1
  624. data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +122 -146
  625. data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +34 -50
  626. data/src/cxx_supportlib/vendor-modified/boost/asio/yield.hpp +1 -1
  627. data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +6 -28
  628. data/src/cxx_supportlib/vendor-modified/boost/assert/source_location.hpp +8 -3
  629. data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic.hpp +2 -16
  630. data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_ref.hpp +2 -3
  631. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_ref_impl.hpp +5 -3
  632. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_cast.hpp +6 -4
  633. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +0 -49
  634. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_x86.hpp +107 -40
  635. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_msvc_x86.hpp +32 -5
  636. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations_emulated.hpp +12 -13
  637. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_ops_emulated.hpp +7 -8
  638. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_emulated.hpp +26 -27
  639. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/float_sizes.hpp +122 -35
  640. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fp_ops_emulated.hpp +2 -3
  641. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/pause.hpp +7 -0
  642. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/remove_cv.hpp +42 -0
  643. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_on_address.hpp +1 -2
  644. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_emulated.hpp +3 -4
  645. data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic.hpp +2 -3
  646. data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_ref.hpp +2 -3
  647. data/src/cxx_supportlib/vendor-modified/boost/bind/apply.hpp +2 -60
  648. data/src/cxx_supportlib/vendor-modified/boost/bind/bind.hpp +230 -1740
  649. data/src/cxx_supportlib/vendor-modified/boost/bind/{bind_cc.hpp → detail/bind_cc.hpp} +20 -20
  650. data/src/cxx_supportlib/vendor-modified/boost/bind/detail/bind_mf2_cc.hpp +210 -0
  651. data/src/cxx_supportlib/vendor-modified/boost/bind/detail/bind_mf_cc.hpp +405 -0
  652. data/src/cxx_supportlib/vendor-modified/boost/bind/detail/integer_sequence.hpp +111 -0
  653. data/src/cxx_supportlib/vendor-modified/boost/bind/detail/result_traits.hpp +1 -0
  654. data/src/cxx_supportlib/vendor-modified/boost/bind/detail/tuple_for_each.hpp +64 -0
  655. data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn.hpp +140 -290
  656. data/src/cxx_supportlib/vendor-modified/boost/bind/placeholders.hpp +3 -16
  657. data/src/cxx_supportlib/vendor-modified/boost/bind/protect.hpp +0 -279
  658. data/src/cxx_supportlib/vendor-modified/boost/bind/std_placeholders.hpp +0 -6
  659. data/src/cxx_supportlib/vendor-modified/boost/chrono/config.hpp +1 -0
  660. data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/is_evenly_divisible_by.hpp +1 -7
  661. data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/requires_cxx11.hpp +23 -0
  662. data/src/cxx_supportlib/vendor-modified/boost/chrono/duration.hpp +2 -1
  663. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_get.hpp +1 -1
  664. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_units.hpp +1 -0
  665. data/src/cxx_supportlib/vendor-modified/boost/chrono/io_v1/chrono_io.hpp +3 -3
  666. data/src/cxx_supportlib/vendor-modified/boost/chrono/system_clocks.hpp +1 -0
  667. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx03.hpp +1 -1
  668. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx11.hpp +4 -1
  669. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx14.hpp +1 -1
  670. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx17.hpp +4 -1
  671. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx20.hpp +1 -1
  672. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx23.hpp +41 -0
  673. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/borland.hpp +4 -0
  674. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang.hpp +8 -0
  675. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang_version.hpp +8 -2
  676. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/codegear.hpp +5 -0
  677. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/common_edg.hpp +4 -1
  678. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/cray.hpp +1 -0
  679. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/digitalmars.hpp +4 -0
  680. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc.hpp +4 -0
  681. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc_xml.hpp +4 -2
  682. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/hp_acc.hpp +5 -0
  683. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/intel.hpp +1 -0
  684. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/metrowerks.hpp +4 -0
  685. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/mpw.hpp +4 -0
  686. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/nvcc.hpp +3 -0
  687. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/pathscale.hpp +4 -0
  688. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/sunpro_cc.hpp +4 -0
  689. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/vacpp.hpp +4 -0
  690. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/visualc.hpp +13 -3
  691. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp.hpp +8 -0
  692. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp_zos.hpp +2 -0
  693. data/src/cxx_supportlib/vendor-modified/boost/config/detail/cxx_composite.hpp +16 -1
  694. data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +56 -0
  695. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +32 -0
  696. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +16 -1
  697. data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +6 -7
  698. data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +18 -19
  699. data/src/cxx_supportlib/vendor-modified/boost/container/allocator_traits.hpp +27 -29
  700. data/src/cxx_supportlib/vendor-modified/boost/container/container_fwd.hpp +0 -29
  701. data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +144 -145
  702. data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool_impl.hpp +4 -5
  703. data/src/cxx_supportlib/vendor-modified/boost/container/detail/advanced_insert_int.hpp +48 -49
  704. data/src/cxx_supportlib/vendor-modified/boost/container/detail/alloc_helpers.hpp +6 -6
  705. data/src/cxx_supportlib/vendor-modified/boost/container/detail/allocator_version_traits.hpp +14 -15
  706. data/src/cxx_supportlib/vendor-modified/boost/container/detail/compare_functors.hpp +22 -22
  707. data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_begin.hpp +1 -0
  708. data/src/cxx_supportlib/vendor-modified/boost/container/detail/copy_move_algo.hpp +71 -69
  709. data/src/cxx_supportlib/vendor-modified/boost/container/detail/destroyers.hpp +48 -48
  710. data/src/cxx_supportlib/vendor-modified/boost/container/detail/dispatch_uses_allocator.hpp +38 -40
  711. data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +165 -153
  712. data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterators.hpp +162 -163
  713. data/src/cxx_supportlib/vendor-modified/boost/container/detail/math_functions.hpp +1 -2
  714. data/src/cxx_supportlib/vendor-modified/boost/container/detail/mutex.hpp +48 -12
  715. data/src/cxx_supportlib/vendor-modified/boost/container/detail/next_capacity.hpp +6 -8
  716. data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_alloc_holder.hpp +44 -46
  717. data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool_impl.hpp +10 -11
  718. data/src/cxx_supportlib/vendor-modified/boost/container/detail/pair.hpp +18 -19
  719. data/src/cxx_supportlib/vendor-modified/boost/container/detail/placement_new.hpp +0 -8
  720. data/src/cxx_supportlib/vendor-modified/boost/container/detail/transform_iterator.hpp +28 -28
  721. data/src/cxx_supportlib/vendor-modified/boost/container/detail/tree.hpp +83 -84
  722. data/src/cxx_supportlib/vendor-modified/boost/container/detail/value_init.hpp +3 -3
  723. data/src/cxx_supportlib/vendor-modified/boost/container/detail/workaround.hpp +77 -1
  724. data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +81 -85
  725. data/src/cxx_supportlib/vendor-modified/boost/container/flat_map.hpp +231 -233
  726. data/src/cxx_supportlib/vendor-modified/boost/container/flat_set.hpp +86 -86
  727. data/src/cxx_supportlib/vendor-modified/boost/container/list.hpp +33 -33
  728. data/src/cxx_supportlib/vendor-modified/boost/container/map.hpp +107 -110
  729. data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +9 -11
  730. data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +10 -11
  731. data/src/cxx_supportlib/vendor-modified/boost/container/node_handle.hpp +29 -17
  732. data/src/cxx_supportlib/vendor-modified/boost/container/options.hpp +2 -2
  733. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/memory_resource.hpp +1 -1
  734. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/polymorphic_allocator.hpp +1 -0
  735. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/resource_adaptor.hpp +1 -1
  736. data/src/cxx_supportlib/vendor-modified/boost/container/scoped_allocator.hpp +80 -82
  737. data/src/cxx_supportlib/vendor-modified/boost/container/set.hpp +81 -81
  738. data/src/cxx_supportlib/vendor-modified/boost/container/slist.hpp +24 -26
  739. data/src/cxx_supportlib/vendor-modified/boost/container/small_vector.hpp +147 -122
  740. data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +109 -110
  741. data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +32 -32
  742. data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +165 -194
  743. data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +4 -5
  744. data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +263 -199
  745. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_integral.hpp +146 -0
  746. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_mix.hpp +6 -6
  747. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_range.hpp +296 -61
  748. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_tuple_like.hpp +62 -0
  749. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/mulx.hpp +79 -0
  750. data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash.hpp +38 -124
  751. data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash_fwd.hpp +1 -0
  752. data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_contiguous_range.hpp +27 -20
  753. data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_described_class.hpp +4 -5
  754. data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_range.hpp +8 -40
  755. data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_tuple_like.hpp +36 -0
  756. data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_unordered_range.hpp +6 -7
  757. data/src/cxx_supportlib/vendor-modified/boost/core/alignof.hpp +57 -0
  758. data/src/cxx_supportlib/vendor-modified/boost/core/allocator_access.hpp +22 -8
  759. data/src/cxx_supportlib/vendor-modified/boost/core/bit.hpp +362 -31
  760. data/src/cxx_supportlib/vendor-modified/boost/core/checked_delete.hpp +29 -3
  761. data/src/cxx_supportlib/vendor-modified/boost/core/data.hpp +46 -0
  762. data/src/cxx_supportlib/vendor-modified/boost/core/detail/is_same.hpp +39 -0
  763. data/src/cxx_supportlib/vendor-modified/boost/core/detail/lwt_unattended.hpp +66 -0
  764. data/src/cxx_supportlib/vendor-modified/boost/core/detail/sp_thread_pause.hpp +71 -0
  765. data/src/cxx_supportlib/vendor-modified/boost/{smart_ptr → core}/detail/sp_thread_sleep.hpp +39 -21
  766. data/src/cxx_supportlib/vendor-modified/boost/core/detail/sp_thread_yield.hpp +100 -0
  767. data/src/cxx_supportlib/vendor-modified/boost/core/detail/string_view.hpp +7 -7
  768. data/src/cxx_supportlib/vendor-modified/boost/core/fclose_deleter.hpp +7 -0
  769. data/src/cxx_supportlib/vendor-modified/boost/core/functor.hpp +41 -0
  770. data/src/cxx_supportlib/vendor-modified/boost/core/identity.hpp +61 -0
  771. data/src/cxx_supportlib/vendor-modified/boost/core/invoke_swap.hpp +93 -0
  772. data/src/cxx_supportlib/vendor-modified/boost/core/is_same.hpp +10 -15
  773. data/src/cxx_supportlib/vendor-modified/boost/core/launder.hpp +69 -0
  774. data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test.hpp +33 -36
  775. data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test_trait.hpp +3 -3
  776. data/src/cxx_supportlib/vendor-modified/boost/core/make_span.hpp +59 -0
  777. data/src/cxx_supportlib/vendor-modified/boost/core/max_align.hpp +82 -0
  778. data/src/cxx_supportlib/vendor-modified/boost/core/memory_resource.hpp +108 -0
  779. data/src/cxx_supportlib/vendor-modified/boost/core/null_deleter.hpp +7 -0
  780. data/src/cxx_supportlib/vendor-modified/boost/core/ref.hpp +23 -16
  781. data/src/cxx_supportlib/vendor-modified/boost/core/serialization.hpp +131 -0
  782. data/src/cxx_supportlib/vendor-modified/boost/core/size.hpp +31 -0
  783. data/src/cxx_supportlib/vendor-modified/boost/core/snprintf.hpp +173 -0
  784. data/src/cxx_supportlib/vendor-modified/boost/core/span.hpp +17 -17
  785. data/src/cxx_supportlib/vendor-modified/boost/core/swap.hpp +10 -40
  786. data/src/cxx_supportlib/vendor-modified/boost/core/type_name.hpp +29 -5
  787. data/src/cxx_supportlib/vendor-modified/boost/core/yield_primitives.hpp +12 -0
  788. data/src/cxx_supportlib/vendor-modified/boost/describe/members.hpp +2 -0
  789. data/src/cxx_supportlib/vendor-modified/boost/detail/basic_pointerbuf.hpp +3 -6
  790. data/src/cxx_supportlib/vendor-modified/boost/detail/lcast_precision.hpp +6 -97
  791. data/src/cxx_supportlib/vendor-modified/boost/exception/current_exception_cast.hpp +1 -1
  792. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/clone_current_exception.hpp +1 -1
  793. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/error_info_impl.hpp +1 -1
  794. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/exception_ptr.hpp +22 -10
  795. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/is_output_streamable.hpp +1 -1
  796. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/object_hex_dump.hpp +1 -1
  797. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/requires_cxx11.hpp +24 -0
  798. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/type_info.hpp +1 -1
  799. data/src/cxx_supportlib/vendor-modified/boost/exception/diagnostic_information.hpp +4 -4
  800. data/src/cxx_supportlib/vendor-modified/boost/exception/exception.hpp +1 -1
  801. data/src/cxx_supportlib/vendor-modified/boost/exception/get_error_info.hpp +1 -1
  802. data/src/cxx_supportlib/vendor-modified/boost/exception/info.hpp +1 -1
  803. data/src/cxx_supportlib/vendor-modified/boost/exception/to_string.hpp +2 -2
  804. data/src/cxx_supportlib/vendor-modified/boost/exception/to_string_stub.hpp +1 -1
  805. data/src/cxx_supportlib/vendor-modified/boost/function/function0.hpp +1 -3
  806. data/src/cxx_supportlib/vendor-modified/boost/function/function1.hpp +1 -3
  807. data/src/cxx_supportlib/vendor-modified/boost/function/function10.hpp +1 -3
  808. data/src/cxx_supportlib/vendor-modified/boost/function/function2.hpp +1 -3
  809. data/src/cxx_supportlib/vendor-modified/boost/function/function3.hpp +1 -3
  810. data/src/cxx_supportlib/vendor-modified/boost/function/function4.hpp +1 -3
  811. data/src/cxx_supportlib/vendor-modified/boost/function/function5.hpp +1 -3
  812. data/src/cxx_supportlib/vendor-modified/boost/function/function6.hpp +1 -3
  813. data/src/cxx_supportlib/vendor-modified/boost/function/function7.hpp +1 -3
  814. data/src/cxx_supportlib/vendor-modified/boost/function/function8.hpp +1 -3
  815. data/src/cxx_supportlib/vendor-modified/boost/function/function9.hpp +1 -3
  816. data/src/cxx_supportlib/vendor-modified/boost/function/function_base.hpp +49 -198
  817. data/src/cxx_supportlib/vendor-modified/boost/function/function_fwd.hpp +36 -41
  818. data/src/cxx_supportlib/vendor-modified/boost/function/function_template.hpp +277 -420
  819. data/src/cxx_supportlib/vendor-modified/boost/function/function_typeof.hpp +1 -31
  820. data/src/cxx_supportlib/vendor-modified/boost/function.hpp +5 -61
  821. data/src/cxx_supportlib/vendor-modified/boost/integer/extended_euclidean.hpp +2 -2
  822. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +24 -25
  823. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +12 -13
  824. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +1 -1
  825. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +24 -25
  826. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +65 -66
  827. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +20 -20
  828. data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +7 -7
  829. data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +10 -10
  830. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +3 -3
  831. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/array_initializer.hpp +5 -5
  832. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/common_slist_algorithms.hpp +10 -10
  833. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/default_header_holder.hpp +3 -3
  834. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/ebo_functor_holder.hpp +24 -24
  835. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/equal_to_value.hpp +1 -1
  836. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/exception_disposer.hpp +1 -1
  837. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/generic_hook.hpp +14 -15
  838. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash.hpp +277 -0
  839. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_combine.hpp +11 -49
  840. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_integral.hpp +119 -0
  841. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_mix.hpp +130 -0
  842. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +41 -41
  843. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hook_traits.hpp +14 -20
  844. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iiterator.hpp +6 -6
  845. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iterator.hpp +12 -12
  846. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/key_nodeptr_comp.hpp +7 -7
  847. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_iterator.hpp +19 -19
  848. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/mpl.hpp +6 -0
  849. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_cloner_disposer.hpp +3 -3
  850. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/parent_from_member.hpp +6 -17
  851. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/simple_disposers.hpp +1 -1
  852. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/size_holder.hpp +14 -14
  853. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_iterator.hpp +20 -20
  854. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/transform_iterator.hpp +22 -22
  855. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_iterator.hpp +21 -21
  856. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_value_compare.hpp +28 -28
  857. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +58 -1
  858. data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +268 -239
  859. data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +9 -9
  860. data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +57 -58
  861. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pack_options.hpp +3 -3
  862. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +18 -18
  863. data/src/cxx_supportlib/vendor-modified/boost/intrusive/priority_compare.hpp +3 -3
  864. data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +12 -13
  865. data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +24 -25
  866. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +24 -25
  867. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +14 -15
  868. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +1 -1
  869. data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +61 -62
  870. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +24 -25
  871. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +12 -13
  872. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +18 -19
  873. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +4 -0
  874. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +36 -37
  875. data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +37 -34
  876. data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +11 -11
  877. data/src/cxx_supportlib/vendor-modified/boost/io/ios_state.hpp +2 -2
  878. data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/facade_iterator_category.hpp +10 -11
  879. data/src/cxx_supportlib/vendor-modified/boost/iterator/is_iterator.hpp +148 -0
  880. data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_concepts.hpp +2 -2
  881. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/bad_lexical_cast.hpp +7 -13
  882. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/buffer_view.hpp +59 -0
  883. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical.hpp +113 -131
  884. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +612 -645
  885. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +85 -79
  886. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/inf_nan.hpp +25 -32
  887. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/is_character.hpp +22 -29
  888. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_basic_unlockedbuf.hpp +73 -0
  889. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_char_constants.hpp +1 -1
  890. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_unsigned_converters.hpp +21 -16
  891. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/widest_char.hpp +7 -9
  892. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/try_lexical_convert.hpp +22 -161
  893. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast.hpp +9 -12
  894. data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/chrono.cpp +4 -2
  895. data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/process_cpu_clocks.cpp +3 -1
  896. data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/thread_clock.cpp +3 -1
  897. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/posix_api.cpp +10 -18
  898. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/wide_posix_api.cpp +13 -14
  899. data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/thread.cpp +24 -14
  900. data/src/cxx_supportlib/vendor-modified/boost/limits.hpp +12 -12
  901. data/src/cxx_supportlib/vendor-modified/boost/move/adl_move_swap.hpp +5 -5
  902. data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_merge.hpp +5 -3
  903. data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_sort.hpp +20 -19
  904. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/adaptive_sort_merge.hpp +41 -56
  905. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/basic_op.hpp +11 -10
  906. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/heap_sort.hpp +3 -2
  907. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge.hpp +32 -34
  908. data/src/cxx_supportlib/vendor-modified/boost/move/algo/move.hpp +4 -5
  909. data/src/cxx_supportlib/vendor-modified/boost/move/algo/predicate.hpp +11 -11
  910. data/src/cxx_supportlib/vendor-modified/boost/move/algorithm.hpp +0 -1
  911. data/src/cxx_supportlib/vendor-modified/boost/move/core.hpp +3 -3
  912. data/src/cxx_supportlib/vendor-modified/boost/move/default_delete.hpp +5 -6
  913. data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_to_raw_pointer.hpp +3 -3
  914. data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils.hpp +2 -2
  915. data/src/cxx_supportlib/vendor-modified/boost/move/detail/move_helpers.hpp +24 -24
  916. data/src/cxx_supportlib/vendor-modified/boost/move/detail/nsec_clock.hpp +65 -24
  917. data/src/cxx_supportlib/vendor-modified/boost/move/detail/reverse_iterator.hpp +28 -28
  918. data/src/cxx_supportlib/vendor-modified/boost/move/detail/to_raw_pointer.hpp +1 -1
  919. data/src/cxx_supportlib/vendor-modified/boost/move/detail/type_traits.hpp +72 -23
  920. data/src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp +81 -1
  921. data/src/cxx_supportlib/vendor-modified/boost/move/iterator.hpp +22 -22
  922. data/src/cxx_supportlib/vendor-modified/boost/move/unique_ptr.hpp +65 -66
  923. data/src/cxx_supportlib/vendor-modified/boost/move/utility.hpp +2 -2
  924. data/src/cxx_supportlib/vendor-modified/boost/move/utility_core.hpp +8 -6
  925. data/src/cxx_supportlib/vendor-modified/boost/mp11/algorithm.hpp +97 -17
  926. data/src/cxx_supportlib/vendor-modified/boost/mp11/bind.hpp +9 -0
  927. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/config.hpp +11 -0
  928. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_append.hpp +140 -4
  929. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_defer.hpp +119 -0
  930. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_fold.hpp +108 -4
  931. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_front.hpp +13 -1
  932. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_is_value_list.hpp +41 -0
  933. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_list_v.hpp +27 -0
  934. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_map_find.hpp +1 -1
  935. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_plus.hpp +4 -1
  936. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_rename.hpp +18 -5
  937. data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_value.hpp +25 -0
  938. data/src/cxx_supportlib/vendor-modified/boost/mp11/integer_sequence.hpp +9 -0
  939. data/src/cxx_supportlib/vendor-modified/boost/mp11/integral.hpp +10 -0
  940. data/src/cxx_supportlib/vendor-modified/boost/mp11/list.hpp +180 -3
  941. data/src/cxx_supportlib/vendor-modified/boost/mp11/utility.hpp +2 -96
  942. data/src/cxx_supportlib/vendor-modified/boost/mp11/version.hpp +1 -1
  943. data/src/cxx_supportlib/vendor-modified/boost/mpl/assert.hpp +3 -3
  944. data/src/cxx_supportlib/vendor-modified/boost/next_prior.hpp +3 -44
  945. data/src/cxx_supportlib/vendor-modified/boost/nondet_random.hpp +22 -0
  946. data/src/cxx_supportlib/vendor-modified/boost/none_t.hpp +8 -0
  947. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/old_optional_implementation.hpp +5 -4
  948. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_config.hpp +3 -3
  949. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_reference_spec.hpp +2 -2
  950. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_relops.hpp +1 -1
  951. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_swap.hpp +6 -6
  952. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_trivially_copyable_base.hpp +3 -3
  953. data/src/cxx_supportlib/vendor-modified/boost/optional/optional.hpp +4 -4
  954. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_keyword_arg_ref.hpp +2 -2
  955. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/unmatched_argument.hpp +1 -1
  956. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/overloads.hpp +1 -1
  957. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/tag.hpp +4 -4
  958. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/unwrap_cv_reference.hpp +1 -1
  959. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/void.hpp +1 -1
  960. data/src/cxx_supportlib/vendor-modified/boost/parameter/binding.hpp +3 -3
  961. data/src/cxx_supportlib/vendor-modified/boost/parameter/match.hpp +1 -1
  962. data/src/cxx_supportlib/vendor-modified/boost/parameter/template_keyword.hpp +1 -1
  963. data/src/cxx_supportlib/vendor-modified/boost/parameter/value_type.hpp +3 -3
  964. data/src/cxx_supportlib/vendor-modified/boost/pool/pool.hpp +1 -1
  965. data/src/cxx_supportlib/vendor-modified/boost/pool/simple_segregated_storage.hpp +13 -0
  966. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/msvc.h +53 -0
  967. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std.h +1 -0
  968. data/src/cxx_supportlib/vendor-modified/boost/predef/make.h +4 -0
  969. data/src/cxx_supportlib/vendor-modified/boost/predef/os/vms.h +1 -1
  970. data/src/cxx_supportlib/vendor-modified/boost/predef/version.h +1 -1
  971. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/has_opt.hpp +2 -0
  972. data/src/cxx_supportlib/vendor-modified/boost/random/inversive_congruential.hpp +1 -1
  973. data/src/cxx_supportlib/vendor-modified/boost/random/splitmix64.hpp +203 -0
  974. data/src/cxx_supportlib/vendor-modified/boost/random/subtract_with_carry.hpp +14 -14
  975. data/src/cxx_supportlib/vendor-modified/boost/random/uniform_real_distribution.hpp +2 -2
  976. data/src/cxx_supportlib/vendor-modified/boost/random.hpp +1 -0
  977. data/src/cxx_supportlib/vendor-modified/boost/ratio/config.hpp +4 -82
  978. data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/gcd_lcm.hpp +53 -0
  979. data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/is_evenly_divisible_by.hpp +32 -0
  980. data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/is_ratio.hpp +28 -0
  981. data/src/cxx_supportlib/vendor-modified/boost/ratio/include.hpp +1 -3
  982. data/src/cxx_supportlib/vendor-modified/boost/ratio/ratio.hpp +5 -249
  983. data/src/cxx_supportlib/vendor-modified/boost/ratio/ratio_fwd.hpp +30 -56
  984. data/src/cxx_supportlib/vendor-modified/boost/ratio/ratio_io.hpp +0 -533
  985. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_workaround.hpp +7 -7
  986. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/icu.hpp +9 -9
  987. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_workaround.hpp +7 -7
  988. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/allocate_shared_array.hpp +1 -0
  989. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/requires_cxx11.hpp +23 -0
  990. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_atomic.hpp +1 -1
  991. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/yield_k.hpp +4 -6
  992. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/enable_shared_from_this.hpp +1 -0
  993. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ptr.hpp +2 -11
  994. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared.hpp +1 -0
  995. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_array.hpp +1 -0
  996. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_object.hpp +1 -0
  997. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_unique.hpp +70 -0
  998. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_array.hpp +1 -0
  999. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_ptr.hpp +1 -0
  1000. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_array.hpp +2 -0
  1001. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +1 -11
  1002. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/weak_ptr.hpp +1 -0
  1003. data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +4 -8
  1004. data/src/cxx_supportlib/vendor-modified/boost/system/detail/enable_if.hpp +3 -12
  1005. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category.hpp +14 -50
  1006. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category_impl.hpp +16 -55
  1007. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.hpp +62 -124
  1008. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_condition.hpp +29 -52
  1009. data/src/cxx_supportlib/vendor-modified/boost/system/detail/generic_category.hpp +7 -7
  1010. data/src/cxx_supportlib/vendor-modified/boost/system/detail/generic_category_message.hpp +4 -4
  1011. data/src/cxx_supportlib/vendor-modified/boost/system/detail/interop_category.hpp +7 -7
  1012. data/src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp +3 -13
  1013. data/src/cxx_supportlib/vendor-modified/boost/system/detail/mutex.hpp +128 -0
  1014. data/src/cxx_supportlib/vendor-modified/boost/system/detail/snprintf.hpp +1 -46
  1015. data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_category.hpp +14 -13
  1016. data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_category_impl.hpp +2 -2
  1017. data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category.hpp +7 -7
  1018. data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_impl.hpp +3 -3
  1019. data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_message.hpp +2 -2
  1020. data/src/cxx_supportlib/vendor-modified/boost/system/errc.hpp +3 -3
  1021. data/src/cxx_supportlib/vendor-modified/boost/system/system_error.hpp +1 -1
  1022. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/deque.hpp +1 -24
  1023. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/functional.hpp +1 -14
  1024. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/list.hpp +1 -14
  1025. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/allocator_arg.hpp +2 -12
  1026. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/allocator_traits.hpp +0 -11
  1027. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/config.hpp +0 -2
  1028. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/default_delete.hpp +0 -16
  1029. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/pointer_traits.hpp +0 -11
  1030. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/scoped_allocator.hpp +0 -11
  1031. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/shared_ptr.hpp +0 -19
  1032. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/unique_ptr.hpp +4 -6
  1033. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/queue.hpp +2 -26
  1034. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/tuple.hpp +1 -18
  1035. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/vector.hpp +1 -14
  1036. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/invoke.hpp +11 -4
  1037. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/string_to_unsigned.hpp +55 -0
  1038. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/string_trim.hpp +29 -0
  1039. data/src/cxx_supportlib/vendor-modified/boost/thread/externally_locked.hpp +5 -5
  1040. data/src/cxx_supportlib/vendor-modified/boost/thread/future.hpp +0 -1
  1041. data/src/cxx_supportlib/vendor-modified/boost/thread/futures/wait_for_any.hpp +3 -2
  1042. data/src/cxx_supportlib/vendor-modified/boost/thread/synchronized_value.hpp +4 -4
  1043. data/src/cxx_supportlib/vendor-modified/boost/throw_exception.hpp +2 -2
  1044. data/src/cxx_supportlib/vendor-modified/boost/tuple/detail/tuple_basic.hpp +3 -3
  1045. data/src/cxx_supportlib/vendor-modified/boost/tuple/tuple.hpp +1 -1
  1046. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_swappable_cxx_11.hpp +70 -0
  1047. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_floating_point.hpp +22 -0
  1048. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_integral.hpp +3 -0
  1049. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_nothrow_swappable.hpp +4 -24
  1050. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_swappable.hpp +92 -0
  1051. data/src/cxx_supportlib/vendor-modified/boost/typeof/decltype.hpp +2 -3
  1052. data/src/cxx_supportlib/vendor-modified/boost/typeof/incr_registration_group.hpp +1 -10
  1053. data/src/cxx_supportlib/vendor-modified/boost/typeof/msvc/typeof_impl.hpp +5 -6
  1054. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/bitset.hpp +2 -4
  1055. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/complex.hpp +2 -4
  1056. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/deque.hpp +2 -5
  1057. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/fstream.hpp +2 -15
  1058. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/functional.hpp +4 -51
  1059. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/iostream.hpp +2 -6
  1060. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/istream.hpp +2 -9
  1061. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/iterator.hpp +2 -46
  1062. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/list.hpp +2 -5
  1063. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/locale.hpp +2 -29
  1064. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/map.hpp +2 -9
  1065. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/memory.hpp +4 -9
  1066. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/ostream.hpp +2 -6
  1067. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/queue.hpp +2 -5
  1068. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/set.hpp +2 -9
  1069. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/sstream.hpp +2 -19
  1070. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/stack.hpp +2 -5
  1071. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/streambuf.hpp +2 -5
  1072. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/string.hpp +2 -12
  1073. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/utility.hpp +2 -4
  1074. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/valarray.hpp +2 -10
  1075. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/vector.hpp +2 -5
  1076. data/src/cxx_supportlib/vendor-modified/boost/typeof/typeof.hpp +8 -202
  1077. data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_map.hpp +860 -0
  1078. data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_map_fwd.hpp +51 -0
  1079. data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_set.hpp +716 -0
  1080. data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_set_fwd.hpp +52 -0
  1081. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/allocator_constructed.hpp +59 -0
  1082. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/archive_constructed.hpp +71 -0
  1083. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/bad_archive_exception.hpp +27 -0
  1084. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/concurrent_static_asserts.hpp +105 -0
  1085. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fca.hpp +120 -85
  1086. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/concurrent_table.hpp +1764 -0
  1087. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/core.hpp +2271 -0
  1088. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/element_type.hpp +64 -0
  1089. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/flat_map_types.hpp +86 -0
  1090. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/flat_set_types.hpp +44 -0
  1091. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/ignore_wshadow.hpp +35 -0
  1092. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_handle.hpp +204 -0
  1093. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_map_types.hpp +139 -0
  1094. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_set_types.hpp +92 -0
  1095. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/reentrancy_check.hpp +138 -0
  1096. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/restore_wshadow.hpp +11 -0
  1097. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/rw_spinlock.hpp +179 -0
  1098. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/table.hpp +651 -0
  1099. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/tuple_rotate_right.hpp +52 -0
  1100. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/implementation.hpp +356 -1118
  1101. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/map.hpp +2 -0
  1102. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/mulx.hpp +129 -0
  1103. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/narrow_cast.hpp +44 -0
  1104. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/opt_storage.hpp +30 -0
  1105. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/prime_fmod.hpp +96 -150
  1106. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/serialization_version.hpp +74 -0
  1107. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/serialize_container.hpp +204 -0
  1108. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/serialize_fca_container.hpp +156 -0
  1109. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/serialize_tracked_address.hpp +104 -0
  1110. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/static_assert.hpp +16 -0
  1111. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/throw_exception.hpp +30 -0
  1112. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/type_traits.hpp +136 -19
  1113. data/src/cxx_supportlib/vendor-modified/boost/unordered/hash_traits.hpp +4 -5
  1114. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_map.hpp +171 -103
  1115. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_map_fwd.hpp +1 -6
  1116. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_set.hpp +70 -46
  1117. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_set_fwd.hpp +1 -6
  1118. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map.hpp +406 -899
  1119. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map_fwd.hpp +7 -13
  1120. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_map.hpp +895 -0
  1121. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_map_fwd.hpp +44 -0
  1122. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_set.hpp +699 -0
  1123. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_set_fwd.hpp +44 -0
  1124. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set.hpp +253 -618
  1125. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set_fwd.hpp +8 -14
  1126. data/src/cxx_supportlib/vendor-modified/boost/utility/swap.hpp +4 -1
  1127. data/src/cxx_supportlib/vendor-modified/boost/utility/value_init.hpp +8 -8
  1128. data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
  1129. data/src/cxx_supportlib/vendor-modified/jsoncpp/jsoncpp.cpp +2 -9
  1130. data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/frame.hpp +0 -11
  1131. data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/hybi13.hpp +14 -20
  1132. data/src/helper-scripts/wsgi-loader.py +2 -2
  1133. data/src/nginx_module/ConfigGeneral/ManifestGeneration.c +2 -2
  1134. data/src/ruby_supportlib/phusion_passenger/common_library.rb +16 -5
  1135. data/src/ruby_supportlib/phusion_passenger/config/nginx_engine_compiler.rb +1 -1
  1136. data/src/ruby_supportlib/phusion_passenger/loader_shared_helpers.rb +3 -1
  1137. data/src/ruby_supportlib/phusion_passenger/native_support.rb +10 -7
  1138. data/src/ruby_supportlib/phusion_passenger/platform_info/apache.rb +8 -10
  1139. data/src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb +14 -0
  1140. data/src/ruby_supportlib/phusion_passenger/platform_info/cxx_portability.rb +4 -1
  1141. data/src/ruby_supportlib/phusion_passenger/platform_info/depcheck_specs/libs.rb +6 -6
  1142. data/src/ruby_supportlib/phusion_passenger/platform_info/pcre.rb +11 -12
  1143. data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/app.rb +1 -1
  1144. data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/gdb_controller.rb +4 -0
  1145. data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/lldb_controller.rb +5 -1
  1146. data/src/ruby_supportlib/phusion_passenger.rb +8 -8
  1147. metadata +109 -150
  1148. data/src/cxx_supportlib/ServerKit/http_parser.cpp +0 -2265
  1149. data/src/cxx_supportlib/ServerKit/http_parser.h +0 -330
  1150. data/src/cxx_supportlib/vendor-modified/boost/array.hpp +0 -456
  1151. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bulk_executor_op.hpp +0 -90
  1152. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_arm_fenced_block.hpp +0 -93
  1153. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_hppa_fenced_block.hpp +0 -70
  1154. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_sync_fenced_block.hpp +0 -67
  1155. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_x86_fenced_block.hpp +0 -101
  1156. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_invoke_helpers.hpp +0 -80
  1157. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/macos_fenced_block.hpp +0 -64
  1158. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/old_win_sdk_compat.hpp +0 -216
  1159. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/solaris_fenced_block.hpp +0 -64
  1160. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/variadic_templates.hpp +0 -294
  1161. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_execute.hpp +0 -406
  1162. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_guarantee.hpp +0 -1254
  1163. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/connect.hpp +0 -498
  1164. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_invocable.hpp +0 -154
  1165. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_operation.hpp +0 -111
  1166. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_receiver.hpp +0 -130
  1167. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/bulk_sender.hpp +0 -263
  1168. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/submit_receiver.hpp +0 -235
  1169. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/void_receiver.hpp +0 -92
  1170. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/execute.hpp +0 -296
  1171. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/receiver_invocation_error.ipp +0 -38
  1172. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/operation_state.hpp +0 -101
  1173. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver.hpp +0 -287
  1174. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver_invocation_error.hpp +0 -50
  1175. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/schedule.hpp +0 -296
  1176. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/scheduler.hpp +0 -93
  1177. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/sender.hpp +0 -318
  1178. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_done.hpp +0 -259
  1179. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_error.hpp +0 -259
  1180. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_value.hpp +0 -492
  1181. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/start.hpp +0 -256
  1182. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/submit.hpp +0 -459
  1183. data/src/cxx_supportlib/vendor-modified/boost/asio/handler_alloc_hook.hpp +0 -106
  1184. data/src/cxx_supportlib/vendor-modified/boost/asio/handler_invoke_hook.hpp +0 -113
  1185. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/defer.hpp +0 -300
  1186. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/dispatch.hpp +0 -275
  1187. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +0 -64
  1188. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/post.hpp +0 -300
  1189. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/bulk_execute_free.hpp +0 -116
  1190. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/bulk_execute_member.hpp +0 -116
  1191. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/connect_free.hpp +0 -114
  1192. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/connect_member.hpp +0 -114
  1193. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_free.hpp +0 -110
  1194. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/schedule_free.hpp +0 -110
  1195. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/schedule_member.hpp +0 -110
  1196. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_done_free.hpp +0 -110
  1197. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_done_member.hpp +0 -110
  1198. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_error_free.hpp +0 -114
  1199. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_error_member.hpp +0 -114
  1200. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_value_free.hpp +0 -236
  1201. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_value_member.hpp +0 -236
  1202. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/start_free.hpp +0 -110
  1203. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/start_member.hpp +0 -110
  1204. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/submit_free.hpp +0 -114
  1205. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/submit_member.hpp +0 -114
  1206. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_object_handle.hpp +0 -495
  1207. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_overlapped_handle.hpp +0 -462
  1208. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +0 -581
  1209. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +0 -563
  1210. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle.hpp +0 -40
  1211. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_handle.hpp +0 -41
  1212. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_ptr.hpp +0 -147
  1213. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle.hpp +0 -39
  1214. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle.hpp +0 -39
  1215. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_ops_windows.hpp +0 -201
  1216. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_ops_windows.hpp +0 -67
  1217. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_windows.hpp +0 -57
  1218. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_windows.hpp +0 -179
  1219. data/src/cxx_supportlib/vendor-modified/boost/bind/bind_mf2_cc.hpp +0 -228
  1220. data/src/cxx_supportlib/vendor-modified/boost/bind/bind_mf_cc.hpp +0 -441
  1221. data/src/cxx_supportlib/vendor-modified/boost/bind/bind_template.hpp +0 -345
  1222. data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn_cc.hpp +0 -103
  1223. data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn_template.hpp +0 -1047
  1224. data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn_vw.hpp +0 -130
  1225. data/src/cxx_supportlib/vendor-modified/boost/bind/storage.hpp +0 -475
  1226. data/src/cxx_supportlib/vendor-modified/boost/config/platform/cygwin.hpp +0 -71
  1227. data/src/cxx_supportlib/vendor-modified/boost/container/detail/hash_table.hpp +0 -1278
  1228. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_tuple.hpp +0 -133
  1229. data/src/cxx_supportlib/vendor-modified/boost/detail/atomic_count.hpp +0 -21
  1230. data/src/cxx_supportlib/vendor-modified/boost/function/detail/function_iterate.hpp +0 -16
  1231. data/src/cxx_supportlib/vendor-modified/boost/function/detail/gen_maybe_include.pl +0 -39
  1232. data/src/cxx_supportlib/vendor-modified/boost/function/detail/maybe_include.hpp +0 -369
  1233. data/src/cxx_supportlib/vendor-modified/boost/function/detail/prologue.hpp +0 -26
  1234. data/src/cxx_supportlib/vendor-modified/boost/function/gen_function_N.pl +0 -26
  1235. data/src/cxx_supportlib/vendor-modified/boost/functional/hash_fwd.hpp +0 -6
  1236. data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/abs.hpp +0 -89
  1237. data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/gcd.hpp +0 -124
  1238. data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/lcm.hpp +0 -126
  1239. data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/sign.hpp +0 -89
  1240. data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/overflow_helpers.hpp +0 -367
  1241. data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/ratio_io.hpp +0 -1342
  1242. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/abs.hpp +0 -30
  1243. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/arithmetic.hpp +0 -22
  1244. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/comparison.hpp +0 -19
  1245. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/divides.hpp +0 -30
  1246. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/equal_to.hpp +0 -30
  1247. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/gcd.hpp +0 -30
  1248. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/greater.hpp +0 -30
  1249. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/greater_equal.hpp +0 -30
  1250. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/lcm.hpp +0 -30
  1251. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/less.hpp +0 -30
  1252. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/less_equal.hpp +0 -30
  1253. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/minus.hpp +0 -30
  1254. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/negate.hpp +0 -30
  1255. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/not_equal_to.hpp +0 -30
  1256. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/numeric_cast.hpp +0 -31
  1257. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/plus.hpp +0 -30
  1258. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/rational_c_tag.hpp +0 -25
  1259. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/rational_constant.hpp +0 -15
  1260. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/sign.hpp +0 -30
  1261. data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/times.hpp +0 -30
  1262. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_thread_pause.hpp +0 -51
  1263. data/src/cxx_supportlib/vendor-modified/boost/swap.hpp +0 -17
  1264. data/src/cxx_supportlib/vendor-modified/boost/type_index/stl_type_index.hpp +0 -278
  1265. data/src/cxx_supportlib/vendor-modified/boost/type_index/type_index_facade.hpp +0 -297
  1266. data/src/cxx_supportlib/vendor-modified/boost/type_index.hpp +0 -265
  1267. data/src/cxx_supportlib/vendor-modified/boost/typeof/dmc/typeof_impl.hpp +0 -100
  1268. data/src/cxx_supportlib/vendor-modified/boost/typeof/encode_decode.hpp +0 -58
  1269. data/src/cxx_supportlib/vendor-modified/boost/typeof/encode_decode_params.hpp +0 -34
  1270. data/src/cxx_supportlib/vendor-modified/boost/typeof/int_encoding.hpp +0 -118
  1271. data/src/cxx_supportlib/vendor-modified/boost/typeof/integral_template_param.hpp +0 -80
  1272. data/src/cxx_supportlib/vendor-modified/boost/typeof/message.hpp +0 -8
  1273. data/src/cxx_supportlib/vendor-modified/boost/typeof/modifiers.hpp +0 -121
  1274. data/src/cxx_supportlib/vendor-modified/boost/typeof/native.hpp +0 -60
  1275. data/src/cxx_supportlib/vendor-modified/boost/typeof/pointers_data_members.hpp +0 -38
  1276. data/src/cxx_supportlib/vendor-modified/boost/typeof/register_functions.hpp +0 -50
  1277. data/src/cxx_supportlib/vendor-modified/boost/typeof/register_functions_iterate.hpp +0 -135
  1278. data/src/cxx_supportlib/vendor-modified/boost/typeof/register_fundamental.hpp +0 -61
  1279. data/src/cxx_supportlib/vendor-modified/boost/typeof/register_mem_functions.hpp +0 -32
  1280. data/src/cxx_supportlib/vendor-modified/boost/typeof/template_encoding.hpp +0 -160
  1281. data/src/cxx_supportlib/vendor-modified/boost/typeof/template_template_param.hpp +0 -149
  1282. data/src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp +0 -27
  1283. data/src/cxx_supportlib/vendor-modified/boost/typeof/type_template_param.hpp +0 -37
  1284. data/src/cxx_supportlib/vendor-modified/boost/typeof/typeof_impl.hpp +0 -187
  1285. data/src/cxx_supportlib/vendor-modified/boost/typeof/unsupported.hpp +0 -29
  1286. data/src/cxx_supportlib/vendor-modified/boost/typeof/vector.hpp +0 -166
  1287. data/src/cxx_supportlib/vendor-modified/boost/typeof/vector100.hpp +0 -321
  1288. data/src/cxx_supportlib/vendor-modified/boost/typeof/vector150.hpp +0 -471
  1289. data/src/cxx_supportlib/vendor-modified/boost/typeof/vector200.hpp +0 -621
  1290. data/src/cxx_supportlib/vendor-modified/boost/typeof/vector50.hpp +0 -171
  1291. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa.hpp +0 -1921
  1292. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fwd.hpp +0 -64
  1293. /data/dev/{webpacketpp.patch → websocketpp.patch} +0 -0
@@ -2,7 +2,7 @@
2
2
  // detail/config.hpp
3
3
  // ~~~~~~~~~~~~~~~~~
4
4
  //
5
- // Copyright (c) 2003-2022 Christopher M. Kohlhoff (chris at kohlhoff dot com)
5
+ // Copyright (c) 2003-2024 Christopher M. Kohlhoff (chris at kohlhoff dot com)
6
6
  //
7
7
  // Distributed under the Boost Software License, Version 1.0. (See accompanying
8
8
  // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
@@ -93,244 +93,107 @@
93
93
  # include <android/api-level.h>
94
94
  #endif // defined(__ANDROID__)
95
95
 
96
- // Support move construction and assignment on compilers known to allow it.
97
- #if !defined(BOOST_ASIO_HAS_MOVE)
98
- # if !defined(BOOST_ASIO_DISABLE_MOVE)
99
- # if defined(__clang__)
100
- # if __has_feature(__cxx_rvalue_references__)
101
- # define BOOST_ASIO_HAS_MOVE 1
102
- # endif // __has_feature(__cxx_rvalue_references__)
103
- # elif defined(__GNUC__)
104
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
105
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
106
- # define BOOST_ASIO_HAS_MOVE 1
107
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
108
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
109
- # endif // defined(__GNUC__)
110
- # if defined(BOOST_ASIO_MSVC)
111
- # if (_MSC_VER >= 1700)
112
- # define BOOST_ASIO_HAS_MOVE 1
113
- # endif // (_MSC_VER >= 1700)
114
- # endif // defined(BOOST_ASIO_MSVC)
115
- # if defined(__INTEL_CXX11_MODE__)
116
- # if defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 1500)
117
- # define BOOST_ASIO_HAS_MOVE 1
118
- # endif // defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 1500)
119
- # if defined(__ICL) && (__ICL >= 1500)
120
- # define BOOST_ASIO_HAS_MOVE 1
121
- # endif // defined(__ICL) && (__ICL >= 1500)
122
- # endif // defined(__INTEL_CXX11_MODE__)
123
- # endif // !defined(BOOST_ASIO_DISABLE_MOVE)
124
- #endif // !defined(BOOST_ASIO_HAS_MOVE)
125
-
126
- // If BOOST_ASIO_MOVE_CAST isn't defined, and move support is available, define
127
- // * BOOST_ASIO_MOVE_ARG,
128
- // * BOOST_ASIO_NONDEDUCED_MOVE_ARG, and
129
- // * BOOST_ASIO_MOVE_CAST
130
- // to take advantage of rvalue references and perfect forwarding.
131
- #if defined(BOOST_ASIO_HAS_MOVE) && !defined(BOOST_ASIO_MOVE_CAST)
96
+ // Always enabled. Retained for backwards compatibility in user code.
97
+ #if !defined(BOOST_ASIO_DISABLE_CXX11_MACROS)
98
+ # define BOOST_ASIO_HAS_MOVE 1
132
99
  # define BOOST_ASIO_MOVE_ARG(type) type&&
133
100
  # define BOOST_ASIO_MOVE_ARG2(type1, type2) type1, type2&&
134
101
  # define BOOST_ASIO_NONDEDUCED_MOVE_ARG(type) type&
135
102
  # define BOOST_ASIO_MOVE_CAST(type) static_cast<type&&>
136
103
  # define BOOST_ASIO_MOVE_CAST2(type1, type2) static_cast<type1, type2&&>
137
104
  # define BOOST_ASIO_MOVE_OR_LVALUE(type) static_cast<type&&>
105
+ # define BOOST_ASIO_MOVE_OR_LVALUE_ARG(type) type&&
138
106
  # define BOOST_ASIO_MOVE_OR_LVALUE_TYPE(type) type
139
- #endif // defined(BOOST_ASIO_HAS_MOVE) && !defined(BOOST_ASIO_MOVE_CAST)
140
-
141
- // If BOOST_ASIO_MOVE_CAST still isn't defined, default to a C++03-compatible
142
- // implementation. Note that older g++ and MSVC versions don't like it when you
143
- // pass a non-member function through a const reference, so for most compilers
144
- // we'll play it safe and stick with the old approach of passing the handler by
145
- // value.
146
- #if !defined(BOOST_ASIO_MOVE_CAST)
147
- # if defined(__GNUC__)
148
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 1)) || (__GNUC__ > 4)
149
- # define BOOST_ASIO_MOVE_ARG(type) const type&
150
- # else // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 1)) || (__GNUC__ > 4)
151
- # define BOOST_ASIO_MOVE_ARG(type) type
152
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 1)) || (__GNUC__ > 4)
153
- # elif defined(BOOST_ASIO_MSVC)
154
- # if (_MSC_VER >= 1400)
155
- # define BOOST_ASIO_MOVE_ARG(type) const type&
156
- # else // (_MSC_VER >= 1400)
157
- # define BOOST_ASIO_MOVE_ARG(type) type
158
- # endif // (_MSC_VER >= 1400)
159
- # else
160
- # define BOOST_ASIO_MOVE_ARG(type) type
161
- # endif
162
- # define BOOST_ASIO_NONDEDUCED_MOVE_ARG(type) const type&
163
- # define BOOST_ASIO_MOVE_CAST(type) static_cast<const type&>
164
- # define BOOST_ASIO_MOVE_CAST2(type1, type2) static_cast<const type1, type2&>
165
- # define BOOST_ASIO_MOVE_OR_LVALUE(type)
166
- # define BOOST_ASIO_MOVE_OR_LVALUE_TYPE(type) type&
167
- #endif // !defined(BOOST_ASIO_MOVE_CAST)
168
-
169
- // Support variadic templates on compilers known to allow it.
170
- #if !defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
171
- # if !defined(BOOST_ASIO_DISABLE_VARIADIC_TEMPLATES)
172
- # if defined(__clang__)
173
- # if __has_feature(__cxx_variadic_templates__)
174
- # define BOOST_ASIO_HAS_VARIADIC_TEMPLATES 1
175
- # endif // __has_feature(__cxx_variadic_templates__)
176
- # elif defined(__GNUC__)
177
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
178
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
179
- # define BOOST_ASIO_HAS_VARIADIC_TEMPLATES 1
180
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
181
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
182
- # endif // defined(__GNUC__)
183
- # if defined(BOOST_ASIO_MSVC)
184
- # if (_MSC_VER >= 1900)
185
- # define BOOST_ASIO_HAS_VARIADIC_TEMPLATES 1
186
- # endif // (_MSC_VER >= 1900)
187
- # endif // defined(BOOST_ASIO_MSVC)
188
- # endif // !defined(BOOST_ASIO_DISABLE_VARIADIC_TEMPLATES)
189
- #endif // !defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
190
- #if !defined(BOOST_ASIO_ELLIPSIS)
191
- # if defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
192
- # define BOOST_ASIO_ELLIPSIS ...
193
- # else // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
194
- # define BOOST_ASIO_ELLIPSIS
195
- # endif // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
196
- #endif // !defined(BOOST_ASIO_ELLIPSIS)
197
-
198
- // Support deleted functions on compilers known to allow it.
199
- #if !defined(BOOST_ASIO_DELETED)
200
- # if defined(__clang__)
201
- # if __has_feature(__cxx_deleted_functions__)
202
- # define BOOST_ASIO_DELETED = delete
203
- # endif // __has_feature(__cxx_deleted_functions__)
204
- # elif defined(__GNUC__)
205
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
206
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
207
- # define BOOST_ASIO_DELETED = delete
208
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
209
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
210
- # endif // defined(__GNUC__)
211
- # if defined(BOOST_ASIO_MSVC)
212
- # if (_MSC_VER >= 1900)
213
- # define BOOST_ASIO_DELETED = delete
214
- # endif // (_MSC_VER >= 1900)
215
- # endif // defined(BOOST_ASIO_MSVC)
216
- # if !defined(BOOST_ASIO_DELETED)
217
- # define BOOST_ASIO_DELETED
218
- # endif // !defined(BOOST_ASIO_DELETED)
219
- #endif // !defined(BOOST_ASIO_DELETED)
220
-
221
- // Support constexpr on compilers known to allow it.
222
- #if !defined(BOOST_ASIO_HAS_CONSTEXPR)
223
- # if !defined(BOOST_ASIO_DISABLE_CONSTEXPR)
107
+ # define BOOST_ASIO_DELETED = delete
108
+ # define BOOST_ASIO_HAS_VARIADIC_TEMPLATES 1
109
+ # define BOOST_ASIO_HAS_CONSTEXPR 1
110
+ # define BOOST_ASIO_STATIC_CONSTEXPR(type, assignment) \
111
+ static constexpr type assignment
112
+ # define BOOST_ASIO_HAS_NOEXCEPT 1
113
+ # define BOOST_ASIO_NOEXCEPT noexcept(true)
114
+ # define BOOST_ASIO_NOEXCEPT_OR_NOTHROW noexcept(true)
115
+ # define BOOST_ASIO_NOEXCEPT_IF(c) noexcept(c)
116
+ # define BOOST_ASIO_HAS_DECLTYPE 1
117
+ # define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX(t) auto
118
+ # define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX2(t0, t1) auto
119
+ # define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX3(t0, t1, t2) auto
120
+ # define BOOST_ASIO_AUTO_RETURN_TYPE_SUFFIX(expr) -> decltype expr
121
+ # define BOOST_ASIO_HAS_ALIAS_TEMPLATES 1
122
+ # define BOOST_ASIO_HAS_DEFAULT_FUNCTION_TEMPLATE_ARGUMENTS 1
123
+ # define BOOST_ASIO_HAS_ENUM_CLASS 1
124
+ # define BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS 1
125
+ # define BOOST_ASIO_LVALUE_REF_QUAL &
126
+ # define BOOST_ASIO_RVALUE_REF_QUAL &&
127
+ # define BOOST_ASIO_HAS_USER_DEFINED_LITERALS 1
128
+ # define BOOST_ASIO_HAS_ALIGNOF 1
129
+ # define BOOST_ASIO_ALIGNOF(T) alignof(T)
130
+ // Standard library support for std::align.
131
+ #if !defined(BOOST_ASIO_HAS_STD_ALIGN)
132
+ # if !defined(BOOST_ASIO_DISABLE_STD_ALIGN)
224
133
  # if defined(__clang__)
225
- # if __has_feature(__cxx_constexpr__)
226
- # define BOOST_ASIO_HAS_CONSTEXPR 1
227
- # endif // __has_feature(__cxx_constexpr__)
134
+ # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
135
+ # define BOOST_ASIO_HAS_STD_ALIGN 1
136
+ # elif (__cplusplus >= 201103)
137
+ # define BOOST_ASIO_HAS_STD_ALIGN 1
138
+ # endif // (__cplusplus >= 201103)
228
139
  # elif defined(__GNUC__)
229
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
140
+ # if (__GNUC__ >= 6)
230
141
  # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
231
- # define BOOST_ASIO_HAS_CONSTEXPR 1
142
+ # define BOOST_ASIO_HAS_STD_ALIGN 1
232
143
  # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
233
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
144
+ # endif // (__GNUC__ >= 6)
234
145
  # endif // defined(__GNUC__)
235
146
  # if defined(BOOST_ASIO_MSVC)
236
- # if (_MSC_VER >= 1900)
237
- # define BOOST_ASIO_HAS_CONSTEXPR 1
238
- # endif // (_MSC_VER >= 1900)
147
+ # if (_MSC_VER >= 1700)
148
+ # define BOOST_ASIO_HAS_STD_ALIGN 1
149
+ # endif // (_MSC_VER >= 1700)
239
150
  # endif // defined(BOOST_ASIO_MSVC)
240
- # endif // !defined(BOOST_ASIO_DISABLE_CONSTEXPR)
241
- #endif // !defined(BOOST_ASIO_HAS_CONSTEXPR)
242
- #if !defined(BOOST_ASIO_CONSTEXPR)
243
- # if defined(BOOST_ASIO_HAS_CONSTEXPR)
244
- # define BOOST_ASIO_CONSTEXPR constexpr
245
- # else // defined(BOOST_ASIO_HAS_CONSTEXPR)
246
- # define BOOST_ASIO_CONSTEXPR
247
- # endif // defined(BOOST_ASIO_HAS_CONSTEXPR)
248
- #endif // !defined(BOOST_ASIO_CONSTEXPR)
249
- #if !defined(BOOST_ASIO_STATIC_CONSTEXPR)
250
- # if defined(BOOST_ASIO_HAS_CONSTEXPR)
251
- # define BOOST_ASIO_STATIC_CONSTEXPR(type, assignment) \
252
- static constexpr type assignment
253
- # else // defined(BOOST_ASIO_HAS_CONSTEXPR)
254
- # define BOOST_ASIO_STATIC_CONSTEXPR(type, assignment) \
255
- static const type assignment
256
- # endif // defined(BOOST_ASIO_HAS_CONSTEXPR)
257
- #endif // !defined(BOOST_ASIO_STATIC_CONSTEXPR)
151
+ # endif // !defined(BOOST_ASIO_DISABLE_STD_ALIGN)
152
+ #endif // !defined(BOOST_ASIO_HAS_STD_ALIGN)
153
+ # define BOOST_ASIO_HAS_STD_SYSTEM_ERROR 1
154
+ # define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT noexcept(true)
155
+ # define BOOST_ASIO_HAS_STD_ARRAY 1
156
+ # define BOOST_ASIO_HAS_STD_SHARED_PTR 1
157
+ # define BOOST_ASIO_HAS_STD_ALLOCATOR_ARG 1
158
+ # define BOOST_ASIO_HAS_STD_ATOMIC 1
159
+ # define BOOST_ASIO_HAS_STD_CHRONO 1
160
+ # define BOOST_ASIO_HAS_STD_ADDRESSOF 1
161
+ # define BOOST_ASIO_HAS_STD_FUNCTION 1
162
+ # define BOOST_ASIO_HAS_STD_REFERENCE_WRAPPER 1
163
+ # define BOOST_ASIO_HAS_STD_TYPE_TRAITS 1
164
+ # define BOOST_ASIO_HAS_NULLPTR 1
165
+ # define BOOST_ASIO_HAS_CXX11_ALLOCATORS 1
166
+ # define BOOST_ASIO_HAS_CSTDINT 1
167
+ # define BOOST_ASIO_HAS_STD_THREAD 1
168
+ # define BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR 1
169
+ # define BOOST_ASIO_HAS_STD_CALL_ONCE 1
170
+ # define BOOST_ASIO_HAS_STD_FUTURE 1
171
+ # define BOOST_ASIO_HAS_STD_TUPLE 1
172
+ # define BOOST_ASIO_HAS_STD_IOSTREAM_MOVE 1
173
+ # define BOOST_ASIO_HAS_STD_EXCEPTION_PTR 1
174
+ # define BOOST_ASIO_HAS_STD_NESTED_EXCEPTION 1
175
+ # define BOOST_ASIO_HAS_STD_HASH 1
176
+ #endif // !defined(BOOST_ASIO_DISABLE_CXX11_MACROS)
177
+
178
+ // Support for static constexpr with default initialisation.
258
179
  #if !defined(BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT)
259
- # if defined(BOOST_ASIO_HAS_CONSTEXPR)
260
- # if defined(__GNUC__)
261
- # if (__GNUC__ >= 8)
262
- # define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
263
- static constexpr const type name{}
264
- # else // (__GNUC__ >= 8)
265
- # define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
266
- static const type name
267
- # endif // (__GNUC__ >= 8)
268
- # elif defined(BOOST_ASIO_MSVC)
269
- # define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
270
- static const type name
271
- # else // defined(BOOST_ASIO_MSVC)
180
+ # if defined(__GNUC__)
181
+ # if (__GNUC__ >= 8)
272
182
  # define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
273
183
  static constexpr const type name{}
274
- # endif // defined(BOOST_ASIO_MSVC)
275
- # else // defined(BOOST_ASIO_HAS_CONSTEXPR)
184
+ # else // (__GNUC__ >= 8)
185
+ # define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
186
+ static const type name
187
+ # endif // (__GNUC__ >= 8)
188
+ # elif defined(BOOST_ASIO_MSVC)
276
189
  # define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
277
190
  static const type name
278
- # endif // defined(BOOST_ASIO_HAS_CONSTEXPR)
191
+ # else // defined(BOOST_ASIO_MSVC)
192
+ # define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
193
+ static constexpr const type name{}
194
+ # endif // defined(BOOST_ASIO_MSVC)
279
195
  #endif // !defined(BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT)
280
196
 
281
- // Support noexcept on compilers known to allow it.
282
- #if !defined(BOOST_ASIO_HAS_NOEXCEPT)
283
- # if !defined(BOOST_ASIO_DISABLE_NOEXCEPT)
284
- # if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && (BOOST_VERSION >= 105300)
285
- # if !defined(BOOST_NO_NOEXCEPT)
286
- # define BOOST_ASIO_HAS_NOEXCEPT 1
287
- # endif // !defined(BOOST_NO_NOEXCEPT)
288
- # define BOOST_ASIO_NOEXCEPT BOOST_NOEXCEPT
289
- # define BOOST_ASIO_NOEXCEPT_OR_NOTHROW BOOST_NOEXCEPT_OR_NOTHROW
290
- # define BOOST_ASIO_NOEXCEPT_IF(c) BOOST_NOEXCEPT_IF(c)
291
- # elif defined(__clang__)
292
- # if __has_feature(__cxx_noexcept__)
293
- # define BOOST_ASIO_HAS_NOEXCEPT 1
294
- # endif // __has_feature(__cxx_noexcept__)
295
- # elif defined(__GNUC__)
296
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
297
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
298
- # define BOOST_ASIO_HAS_NOEXCEPT 1
299
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
300
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
301
- # elif defined(BOOST_ASIO_MSVC)
302
- # if (_MSC_VER >= 1900)
303
- # define BOOST_ASIO_HAS_NOEXCEPT 1
304
- # endif // (_MSC_VER >= 1900)
305
- # endif // defined(BOOST_ASIO_MSVC)
306
- # endif // !defined(BOOST_ASIO_DISABLE_NOEXCEPT)
307
- # if !defined(BOOST_ASIO_NOEXCEPT)
308
- # endif // !defined(BOOST_ASIO_NOEXCEPT)
309
- # if !defined(BOOST_ASIO_NOEXCEPT_OR_NOTHROW)
310
- # endif // !defined(BOOST_ASIO_NOEXCEPT_OR_NOTHROW)
311
- #endif // !defined(BOOST_ASIO_HAS_NOEXCEPT)
312
- #if !defined(BOOST_ASIO_NOEXCEPT)
313
- # if defined(BOOST_ASIO_HAS_NOEXCEPT)
314
- # define BOOST_ASIO_NOEXCEPT noexcept(true)
315
- # else // defined(BOOST_ASIO_HAS_NOEXCEPT)
316
- # define BOOST_ASIO_NOEXCEPT
317
- # endif // defined(BOOST_ASIO_HAS_NOEXCEPT)
318
- #endif // !defined(BOOST_ASIO_NOEXCEPT)
319
- #if !defined(BOOST_ASIO_NOEXCEPT_OR_NOTHROW)
320
- # if defined(BOOST_ASIO_HAS_NOEXCEPT)
321
- # define BOOST_ASIO_NOEXCEPT_OR_NOTHROW noexcept(true)
322
- # else // defined(BOOST_ASIO_HAS_NOEXCEPT)
323
- # define BOOST_ASIO_NOEXCEPT_OR_NOTHROW throw()
324
- # endif // defined(BOOST_ASIO_HAS_NOEXCEPT)
325
- #endif // !defined(BOOST_ASIO_NOEXCEPT_OR_NOTHROW)
326
- #if !defined(BOOST_ASIO_NOEXCEPT_IF)
327
- # if defined(BOOST_ASIO_HAS_NOEXCEPT)
328
- # define BOOST_ASIO_NOEXCEPT_IF(c) noexcept(c)
329
- # else // defined(BOOST_ASIO_HAS_NOEXCEPT)
330
- # define BOOST_ASIO_NOEXCEPT_IF(c)
331
- # endif // defined(BOOST_ASIO_HAS_NOEXCEPT)
332
- #endif // !defined(BOOST_ASIO_NOEXCEPT_IF)
333
-
334
197
  // Support noexcept on function types on compilers known to allow it.
335
198
  #if !defined(BOOST_ASIO_HAS_NOEXCEPT_FUNCTION_TYPE)
336
199
  # if !defined(BOOST_ASIO_DISABLE_NOEXCEPT_FUNCTION_TYPE)
@@ -350,61 +213,6 @@
350
213
  # endif // !defined(BOOST_ASIO_DISABLE_NOEXCEPT_FUNCTION_TYPE)
351
214
  #endif // !defined(BOOST_ASIO_HAS_NOEXCEPT_FUNCTION_TYPE)
352
215
 
353
- // Support automatic type deduction on compilers known to support it.
354
- #if !defined(BOOST_ASIO_HAS_DECLTYPE)
355
- # if !defined(BOOST_ASIO_DISABLE_DECLTYPE)
356
- # if defined(__clang__)
357
- # if __has_feature(__cxx_decltype__)
358
- # define BOOST_ASIO_HAS_DECLTYPE 1
359
- # endif // __has_feature(__cxx_decltype__)
360
- # elif defined(__GNUC__)
361
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
362
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
363
- # define BOOST_ASIO_HAS_DECLTYPE 1
364
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
365
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
366
- # endif // defined(__GNUC__)
367
- # if defined(BOOST_ASIO_MSVC)
368
- # if (_MSC_VER >= 1800)
369
- # define BOOST_ASIO_HAS_DECLTYPE 1
370
- # endif // (_MSC_VER >= 1800)
371
- # endif // defined(BOOST_ASIO_MSVC)
372
- # endif // !defined(BOOST_ASIO_DISABLE_DECLTYPE)
373
- #endif // !defined(BOOST_ASIO_HAS_DECLTYPE)
374
- #if defined(BOOST_ASIO_HAS_DECLTYPE)
375
- # define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX(t) auto
376
- # define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX2(t0, t1) auto
377
- # define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX3(t0, t1, t2) auto
378
- # define BOOST_ASIO_AUTO_RETURN_TYPE_SUFFIX(expr) -> decltype expr
379
- #else // defined(BOOST_ASIO_HAS_DECLTYPE)
380
- # define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX(t) t
381
- # define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX2(t0, t1) t0, t1
382
- # define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX3(t0, t1, t2) t0, t1, t2
383
- # define BOOST_ASIO_AUTO_RETURN_TYPE_SUFFIX(expr)
384
- #endif // defined(BOOST_ASIO_HAS_DECLTYPE)
385
-
386
- // Support alias templates on compilers known to allow it.
387
- #if !defined(BOOST_ASIO_HAS_ALIAS_TEMPLATES)
388
- # if !defined(BOOST_ASIO_DISABLE_ALIAS_TEMPLATES)
389
- # if defined(__clang__)
390
- # if __has_feature(__cxx_alias_templates__)
391
- # define BOOST_ASIO_HAS_ALIAS_TEMPLATES 1
392
- # endif // __has_feature(__cxx_alias_templates__)
393
- # elif defined(__GNUC__)
394
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
395
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
396
- # define BOOST_ASIO_HAS_ALIAS_TEMPLATES 1
397
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
398
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
399
- # endif // defined(__GNUC__)
400
- # if defined(BOOST_ASIO_MSVC)
401
- # if (_MSC_VER >= 1900)
402
- # define BOOST_ASIO_HAS_ALIAS_TEMPLATES 1
403
- # endif // (_MSC_VER >= 1900)
404
- # endif // defined(BOOST_ASIO_MSVC)
405
- # endif // !defined(BOOST_ASIO_DISABLE_ALIAS_TEMPLATES)
406
- #endif // !defined(BOOST_ASIO_HAS_ALIAS_TEMPLATES)
407
-
408
216
  // Support return type deduction on compilers known to allow it.
409
217
  #if !defined(BOOST_ASIO_HAS_RETURN_TYPE_DEDUCTION)
410
218
  # if !defined(BOOST_ASIO_DISABLE_RETURN_TYPE_DEDUCTION)
@@ -426,32 +234,6 @@
426
234
  # endif // !defined(BOOST_ASIO_DISABLE_RETURN_TYPE_DEDUCTION)
427
235
  #endif // !defined(BOOST_ASIO_HAS_RETURN_TYPE_DEDUCTION)
428
236
 
429
- // Support default function template arguments on compilers known to allow it.
430
- #if !defined(BOOST_ASIO_HAS_DEFAULT_FUNCTION_TEMPLATE_ARGUMENTS)
431
- # if !defined(BOOST_ASIO_DISABLE_DEFAULT_FUNCTION_TEMPLATE_ARGUMENTS)
432
- # if (__cplusplus >= 201103)
433
- # define BOOST_ASIO_HAS_DEFAULT_FUNCTION_TEMPLATE_ARGUMENTS 1
434
- # elif defined(BOOST_ASIO_MSVC)
435
- # if (_MSC_VER >= 1900 && _MSVC_LANG >= 201103)
436
- # define BOOST_ASIO_HAS_DEFAULT_FUNCTION_TEMPLATE_ARGUMENTS 1
437
- # endif // (_MSC_VER >= 1900 && _MSVC_LANG >= 201103)
438
- # endif // defined(BOOST_ASIO_MSVC)
439
- # endif // !defined(BOOST_ASIO_DISABLE_DEFAULT_FUNCTION_TEMPLATE_ARGUMENTS)
440
- #endif // !defined(BOOST_ASIO_HAS_DEFAULT_FUNCTION_TEMPLATE_ARGUMENTS)
441
-
442
- // Support enum classes on compilers known to allow them.
443
- #if !defined(BOOST_ASIO_HAS_ENUM_CLASS)
444
- # if !defined(BOOST_ASIO_DISABLE_ENUM_CLASS)
445
- # if (__cplusplus >= 201103)
446
- # define BOOST_ASIO_HAS_ENUM_CLASS 1
447
- # elif defined(BOOST_ASIO_MSVC)
448
- # if (_MSC_VER >= 1900 && _MSVC_LANG >= 201103)
449
- # define BOOST_ASIO_HAS_ENUM_CLASS 1
450
- # endif // (_MSC_VER >= 1900 && _MSVC_LANG >= 201103)
451
- # endif // defined(BOOST_ASIO_MSVC)
452
- # endif // !defined(BOOST_ASIO_DISABLE_ENUM_CLASS)
453
- #endif // !defined(BOOST_ASIO_HAS_ENUM_CLASS)
454
-
455
237
  // Support concepts on compilers known to allow them.
456
238
  #if !defined(BOOST_ASIO_HAS_CONCEPTS)
457
239
  # if !defined(BOOST_ASIO_DISABLE_CONCEPTS)
@@ -562,43 +344,6 @@
562
344
  # endif // !defined(BOOST_ASIO_DISABLE_WORKING_EXPRESSION_SFINAE)
563
345
  #endif // !defined(BOOST_ASIO_HAS_WORKING_EXPRESSION_SFINAE)
564
346
 
565
- // Support ref-qualified functions on compilers known to allow it.
566
- #if !defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
567
- # if !defined(BOOST_ASIO_DISABLE_REF_QUALIFIED_FUNCTIONS)
568
- # if defined(__clang__)
569
- # if __has_feature(__cxx_reference_qualified_functions__)
570
- # define BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS 1
571
- # endif // __has_feature(__cxx_reference_qualified_functions__)
572
- # elif defined(__GNUC__)
573
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
574
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
575
- # define BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS 1
576
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
577
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
578
- # endif // defined(__GNUC__)
579
- # if defined(BOOST_ASIO_MSVC)
580
- # if (_MSC_VER >= 1900)
581
- # define BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS 1
582
- # endif // (_MSC_VER >= 1900)
583
- # endif // defined(BOOST_ASIO_MSVC)
584
- # endif // !defined(BOOST_ASIO_DISABLE_REF_QUALIFIED_FUNCTIONS)
585
- #endif // !defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
586
- #if defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
587
- # if !defined(BOOST_ASIO_LVALUE_REF_QUAL)
588
- # define BOOST_ASIO_LVALUE_REF_QUAL &
589
- # endif // !defined(BOOST_ASIO_LVALUE_REF_QUAL)
590
- # if !defined(BOOST_ASIO_RVALUE_REF_QUAL)
591
- # define BOOST_ASIO_RVALUE_REF_QUAL &&
592
- # endif // !defined(BOOST_ASIO_RVALUE_REF_QUAL)
593
- #else // defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
594
- # if !defined(BOOST_ASIO_LVALUE_REF_QUAL)
595
- # define BOOST_ASIO_LVALUE_REF_QUAL
596
- # endif // !defined(BOOST_ASIO_LVALUE_REF_QUAL)
597
- # if !defined(BOOST_ASIO_RVALUE_REF_QUAL)
598
- # define BOOST_ASIO_RVALUE_REF_QUAL
599
- # endif // !defined(BOOST_ASIO_RVALUE_REF_QUAL)
600
- #endif // defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
601
-
602
347
  // Support for capturing parameter packs in lambdas.
603
348
  #if !defined(BOOST_ASIO_HAS_VARIADIC_LAMBDA_CAPTURES)
604
349
  # if !defined(BOOST_ASIO_DISABLE_VARIADIC_LAMBDA_CAPTURES)
@@ -618,32 +363,18 @@
618
363
  # endif // !defined(BOOST_ASIO_DISABLE_VARIADIC_LAMBDA_CAPTURES)
619
364
  #endif // !defined(BOOST_ASIO_HAS_VARIADIC_LAMBDA_CAPTURES)
620
365
 
621
- // Support for the alignof operator.
622
- #if !defined(BOOST_ASIO_HAS_ALIGNOF)
623
- # if !defined(BOOST_ASIO_DISABLE_ALIGNOF)
624
- # if (__cplusplus >= 201103)
625
- # define BOOST_ASIO_HAS_ALIGNOF 1
626
- # endif // (__cplusplus >= 201103)
627
- # endif // !defined(BOOST_ASIO_DISABLE_ALIGNOF)
628
- #endif // !defined(BOOST_ASIO_HAS_ALIGNOF)
629
-
630
- #if defined(BOOST_ASIO_HAS_ALIGNOF)
631
- # define BOOST_ASIO_ALIGNOF(T) alignof(T)
632
- # if defined(__STDCPP_DEFAULT_NEW_ALIGNMENT__)
633
- # define BOOST_ASIO_DEFAULT_ALIGN __STDCPP_DEFAULT_NEW_ALIGNMENT__
634
- # elif defined(__GNUC__)
635
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
636
- # define BOOST_ASIO_DEFAULT_ALIGN alignof(std::max_align_t)
637
- # else // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
638
- # define BOOST_ASIO_DEFAULT_ALIGN alignof(max_align_t)
639
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
640
- # else // defined(__GNUC__)
366
+ // Default alignment.
367
+ #if defined(__STDCPP_DEFAULT_NEW_ALIGNMENT__)
368
+ # define BOOST_ASIO_DEFAULT_ALIGN __STDCPP_DEFAULT_NEW_ALIGNMENT__
369
+ #elif defined(__GNUC__)
370
+ # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
641
371
  # define BOOST_ASIO_DEFAULT_ALIGN alignof(std::max_align_t)
642
- # endif // defined(__GNUC__)
643
- #else // defined(BOOST_ASIO_HAS_ALIGNOF)
644
- # define BOOST_ASIO_ALIGNOF(T) 1
645
- # define BOOST_ASIO_DEFAULT_ALIGN 1
646
- #endif // defined(BOOST_ASIO_HAS_ALIGNOF)
372
+ # else // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
373
+ # define BOOST_ASIO_DEFAULT_ALIGN alignof(max_align_t)
374
+ # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
375
+ #else // defined(__GNUC__)
376
+ # define BOOST_ASIO_DEFAULT_ALIGN alignof(std::max_align_t)
377
+ #endif // defined(__GNUC__)
647
378
 
648
379
  // Standard library support for aligned allocation.
649
380
  #if !defined(BOOST_ASIO_HAS_STD_ALIGNED_ALLOC)
@@ -690,215 +421,6 @@
690
421
  # endif // !defined(BOOST_ASIO_DISABLE_STD_ALIGNED_ALLOC)
691
422
  #endif // !defined(BOOST_ASIO_HAS_STD_ALIGNED_ALLOC)
692
423
 
693
- // Standard library support for std::align.
694
- #if !defined(BOOST_ASIO_HAS_STD_ALIGN)
695
- # if !defined(BOOST_ASIO_DISABLE_STD_ALIGN)
696
- # if defined(__clang__)
697
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
698
- # define BOOST_ASIO_HAS_STD_ALIGN 1
699
- # elif (__cplusplus >= 201103)
700
- # define BOOST_ASIO_HAS_STD_ALIGN 1
701
- # endif // (__cplusplus >= 201103)
702
- # elif defined(__GNUC__)
703
- # if (__GNUC__ >= 6)
704
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
705
- # define BOOST_ASIO_HAS_STD_ALIGN 1
706
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
707
- # endif // (__GNUC__ >= 6)
708
- # endif // defined(__GNUC__)
709
- # if defined(BOOST_ASIO_MSVC)
710
- # if (_MSC_VER >= 1700)
711
- # define BOOST_ASIO_HAS_STD_ALIGN 1
712
- # endif // (_MSC_VER >= 1700)
713
- # endif // defined(BOOST_ASIO_MSVC)
714
- # endif // !defined(BOOST_ASIO_DISABLE_STD_ALIGN)
715
- #endif // !defined(BOOST_ASIO_HAS_STD_ALIGN)
716
-
717
- // Standard library support for system errors.
718
- # if !defined(BOOST_ASIO_DISABLE_STD_SYSTEM_ERROR)
719
- # if defined(__clang__)
720
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
721
- # define BOOST_ASIO_HAS_STD_SYSTEM_ERROR 1
722
- # elif (__cplusplus >= 201103)
723
- # if __has_include(<system_error>)
724
- # define BOOST_ASIO_HAS_STD_SYSTEM_ERROR 1
725
- # endif // __has_include(<system_error>)
726
- # endif // (__cplusplus >= 201103)
727
- # elif defined(__GNUC__)
728
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
729
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
730
- # define BOOST_ASIO_HAS_STD_SYSTEM_ERROR 1
731
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
732
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
733
- # endif // defined(__GNUC__)
734
- # if defined(BOOST_ASIO_MSVC)
735
- # if (_MSC_VER >= 1700)
736
- # define BOOST_ASIO_HAS_STD_SYSTEM_ERROR 1
737
- # endif // (_MSC_VER >= 1700)
738
- # endif // defined(BOOST_ASIO_MSVC)
739
- # endif // !defined(BOOST_ASIO_DISABLE_STD_SYSTEM_ERROR)
740
-
741
- // Compliant C++11 compilers put noexcept specifiers on error_category members.
742
- #if !defined(BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT)
743
- # if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && (BOOST_VERSION >= 105300)
744
- # define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT BOOST_NOEXCEPT
745
- # elif defined(__clang__)
746
- # if __has_feature(__cxx_noexcept__)
747
- # define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT noexcept(true)
748
- # endif // __has_feature(__cxx_noexcept__)
749
- # elif defined(__GNUC__)
750
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
751
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
752
- # define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT noexcept(true)
753
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
754
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
755
- # elif defined(BOOST_ASIO_MSVC)
756
- # if (_MSC_VER >= 1900)
757
- # define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT noexcept(true)
758
- # endif // (_MSC_VER >= 1900)
759
- # endif // defined(BOOST_ASIO_MSVC)
760
- # if !defined(BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT)
761
- # define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT
762
- # endif // !defined(BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT)
763
- #endif // !defined(BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT)
764
-
765
- // Standard library support for arrays.
766
- #if !defined(BOOST_ASIO_HAS_STD_ARRAY)
767
- # if !defined(BOOST_ASIO_DISABLE_STD_ARRAY)
768
- # if defined(__clang__)
769
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
770
- # define BOOST_ASIO_HAS_STD_ARRAY 1
771
- # elif (__cplusplus >= 201103)
772
- # if __has_include(<array>)
773
- # define BOOST_ASIO_HAS_STD_ARRAY 1
774
- # endif // __has_include(<array>)
775
- # endif // (__cplusplus >= 201103)
776
- # elif defined(__GNUC__)
777
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 4)
778
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
779
- # define BOOST_ASIO_HAS_STD_ARRAY 1
780
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
781
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 4)
782
- # endif // defined(__GNUC__)
783
- # if defined(BOOST_ASIO_MSVC)
784
- # if (_MSC_VER >= 1600)
785
- # define BOOST_ASIO_HAS_STD_ARRAY 1
786
- # endif // (_MSC_VER >= 1600)
787
- # endif // defined(BOOST_ASIO_MSVC)
788
- # endif // !defined(BOOST_ASIO_DISABLE_STD_ARRAY)
789
- #endif // !defined(BOOST_ASIO_HAS_STD_ARRAY)
790
-
791
- // Standard library support for shared_ptr and weak_ptr.
792
- #if !defined(BOOST_ASIO_HAS_STD_SHARED_PTR)
793
- # if !defined(BOOST_ASIO_DISABLE_STD_SHARED_PTR)
794
- # if defined(__clang__)
795
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
796
- # define BOOST_ASIO_HAS_STD_SHARED_PTR 1
797
- # elif (__cplusplus >= 201103)
798
- # define BOOST_ASIO_HAS_STD_SHARED_PTR 1
799
- # endif // (__cplusplus >= 201103)
800
- # elif defined(__GNUC__)
801
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 4)
802
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
803
- # define BOOST_ASIO_HAS_STD_SHARED_PTR 1
804
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
805
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 4)
806
- # endif // defined(__GNUC__)
807
- # if defined(BOOST_ASIO_MSVC)
808
- # if (_MSC_VER >= 1600)
809
- # define BOOST_ASIO_HAS_STD_SHARED_PTR 1
810
- # endif // (_MSC_VER >= 1600)
811
- # endif // defined(BOOST_ASIO_MSVC)
812
- # endif // !defined(BOOST_ASIO_DISABLE_STD_SHARED_PTR)
813
- #endif // !defined(BOOST_ASIO_HAS_STD_SHARED_PTR)
814
-
815
- // Standard library support for allocator_arg_t.
816
- #if !defined(BOOST_ASIO_HAS_STD_ALLOCATOR_ARG)
817
- # if !defined(BOOST_ASIO_DISABLE_STD_ALLOCATOR_ARG)
818
- # if defined(__clang__)
819
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
820
- # define BOOST_ASIO_HAS_STD_ALLOCATOR_ARG 1
821
- # elif (__cplusplus >= 201103)
822
- # define BOOST_ASIO_HAS_STD_ALLOCATOR_ARG 1
823
- # endif // (__cplusplus >= 201103)
824
- # elif defined(__GNUC__)
825
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
826
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
827
- # define BOOST_ASIO_HAS_STD_ALLOCATOR_ARG 1
828
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
829
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
830
- # endif // defined(__GNUC__)
831
- # if defined(BOOST_ASIO_MSVC)
832
- # if (_MSC_VER >= 1600)
833
- # define BOOST_ASIO_HAS_STD_ALLOCATOR_ARG 1
834
- # endif // (_MSC_VER >= 1600)
835
- # endif // defined(BOOST_ASIO_MSVC)
836
- # endif // !defined(BOOST_ASIO_DISABLE_STD_ALLOCATOR_ARG)
837
- #endif // !defined(BOOST_ASIO_HAS_STD_ALLOCATOR_ARG)
838
-
839
- // Standard library support for atomic operations.
840
- #if !defined(BOOST_ASIO_HAS_STD_ATOMIC)
841
- # if !defined(BOOST_ASIO_DISABLE_STD_ATOMIC)
842
- # if defined(__clang__)
843
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
844
- # define BOOST_ASIO_HAS_STD_ATOMIC 1
845
- # elif (__cplusplus >= 201103)
846
- # if __has_include(<atomic>)
847
- # define BOOST_ASIO_HAS_STD_ATOMIC 1
848
- # endif // __has_include(<atomic>)
849
- # elif defined(__apple_build_version__) && defined(_LIBCPP_VERSION)
850
- # if (__clang_major__ >= 10)
851
- # if __has_include(<atomic>)
852
- # define BOOST_ASIO_HAS_STD_ATOMIC 1
853
- # endif // __has_include(<atomic>)
854
- # endif // (__clang_major__ >= 10)
855
- # endif // defined(__apple_build_version__) && defined(_LIBCPP_VERSION)
856
- # elif defined(__GNUC__)
857
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
858
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
859
- # define BOOST_ASIO_HAS_STD_ATOMIC 1
860
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
861
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
862
- # endif // defined(__GNUC__)
863
- # if defined(BOOST_ASIO_MSVC)
864
- # if (_MSC_VER >= 1700)
865
- # define BOOST_ASIO_HAS_STD_ATOMIC 1
866
- # endif // (_MSC_VER >= 1700)
867
- # endif // defined(BOOST_ASIO_MSVC)
868
- # endif // !defined(BOOST_ASIO_DISABLE_STD_ATOMIC)
869
- #endif // !defined(BOOST_ASIO_HAS_STD_ATOMIC)
870
-
871
- // Standard library support for chrono. Some standard libraries (such as the
872
- // libstdc++ shipped with gcc 4.6) provide monotonic_clock as per early C++0x
873
- // drafts, rather than the eventually standardised name of steady_clock.
874
- #if !defined(BOOST_ASIO_HAS_STD_CHRONO)
875
- # if !defined(BOOST_ASIO_DISABLE_STD_CHRONO)
876
- # if defined(__clang__)
877
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
878
- # define BOOST_ASIO_HAS_STD_CHRONO 1
879
- # elif (__cplusplus >= 201103)
880
- # if __has_include(<chrono>)
881
- # define BOOST_ASIO_HAS_STD_CHRONO 1
882
- # endif // __has_include(<chrono>)
883
- # endif // (__cplusplus >= 201103)
884
- # elif defined(__GNUC__)
885
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
886
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
887
- # define BOOST_ASIO_HAS_STD_CHRONO 1
888
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ == 6))
889
- # define BOOST_ASIO_HAS_STD_CHRONO_MONOTONIC_CLOCK 1
890
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ == 6))
891
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
892
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
893
- # endif // defined(__GNUC__)
894
- # if defined(BOOST_ASIO_MSVC)
895
- # if (_MSC_VER >= 1700)
896
- # define BOOST_ASIO_HAS_STD_CHRONO 1
897
- # endif // (_MSC_VER >= 1700)
898
- # endif // defined(BOOST_ASIO_MSVC)
899
- # endif // !defined(BOOST_ASIO_DISABLE_STD_CHRONO)
900
- #endif // !defined(BOOST_ASIO_HAS_STD_CHRONO)
901
-
902
424
  // Boost support for chrono.
903
425
  #if !defined(BOOST_ASIO_HAS_BOOST_CHRONO)
904
426
  # if !defined(BOOST_ASIO_DISABLE_BOOST_CHRONO)
@@ -953,304 +475,6 @@
953
475
  # endif // !defined(BOOST_ASIO_DISABLE_BOOST_CONTEXT_FIBER)
954
476
  #endif // !defined(BOOST_ASIO_HAS_BOOST_CONTEXT_FIBER)
955
477
 
956
- // Standard library support for addressof.
957
- #if !defined(BOOST_ASIO_HAS_STD_ADDRESSOF)
958
- # if !defined(BOOST_ASIO_DISABLE_STD_ADDRESSOF)
959
- # if defined(__clang__)
960
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
961
- # define BOOST_ASIO_HAS_STD_ADDRESSOF 1
962
- # elif (__cplusplus >= 201103)
963
- # define BOOST_ASIO_HAS_STD_ADDRESSOF 1
964
- # endif // (__cplusplus >= 201103)
965
- # elif defined(__GNUC__)
966
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
967
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
968
- # define BOOST_ASIO_HAS_STD_ADDRESSOF 1
969
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
970
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
971
- # endif // defined(__GNUC__)
972
- # if defined(BOOST_ASIO_MSVC)
973
- # if (_MSC_VER >= 1700)
974
- # define BOOST_ASIO_HAS_STD_ADDRESSOF 1
975
- # endif // (_MSC_VER >= 1700)
976
- # endif // defined(BOOST_ASIO_MSVC)
977
- # endif // !defined(BOOST_ASIO_DISABLE_STD_ADDRESSOF)
978
- #endif // !defined(BOOST_ASIO_HAS_STD_ADDRESSOF)
979
-
980
- // Standard library support for the function class.
981
- #if !defined(BOOST_ASIO_HAS_STD_FUNCTION)
982
- # if !defined(BOOST_ASIO_DISABLE_STD_FUNCTION)
983
- # if defined(__clang__)
984
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
985
- # define BOOST_ASIO_HAS_STD_FUNCTION 1
986
- # elif (__cplusplus >= 201103)
987
- # define BOOST_ASIO_HAS_STD_FUNCTION 1
988
- # endif // (__cplusplus >= 201103)
989
- # elif defined(__GNUC__)
990
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
991
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
992
- # define BOOST_ASIO_HAS_STD_FUNCTION 1
993
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
994
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
995
- # endif // defined(__GNUC__)
996
- # if defined(BOOST_ASIO_MSVC)
997
- # if (_MSC_VER >= 1700)
998
- # define BOOST_ASIO_HAS_STD_FUNCTION 1
999
- # endif // (_MSC_VER >= 1700)
1000
- # endif // defined(BOOST_ASIO_MSVC)
1001
- # endif // !defined(BOOST_ASIO_DISABLE_STD_FUNCTION)
1002
- #endif // !defined(BOOST_ASIO_HAS_STD_FUNCTION)
1003
-
1004
- // Standard library support for the reference_wrapper class.
1005
- #if !defined(BOOST_ASIO_HAS_STD_REFERENCE_WRAPPER)
1006
- # if !defined(BOOST_ASIO_DISABLE_STD_REFERENCE_WRAPPER)
1007
- # if defined(__clang__)
1008
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
1009
- # define BOOST_ASIO_HAS_STD_REFERENCE_WRAPPER 1
1010
- # elif (__cplusplus >= 201103)
1011
- # define BOOST_ASIO_HAS_STD_REFERENCE_WRAPPER 1
1012
- # endif // (__cplusplus >= 201103)
1013
- # elif defined(__GNUC__)
1014
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
1015
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1016
- # define BOOST_ASIO_HAS_STD_REFERENCE_WRAPPER 1
1017
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1018
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
1019
- # endif // defined(__GNUC__)
1020
- # if defined(BOOST_ASIO_MSVC)
1021
- # if (_MSC_VER >= 1700)
1022
- # define BOOST_ASIO_HAS_STD_REFERENCE_WRAPPER 1
1023
- # endif // (_MSC_VER >= 1700)
1024
- # endif // defined(BOOST_ASIO_MSVC)
1025
- # endif // !defined(BOOST_ASIO_DISABLE_STD_REFERENCE_WRAPPER)
1026
- #endif // !defined(BOOST_ASIO_HAS_STD_REFERENCE_WRAPPER)
1027
-
1028
- // Standard library support for type traits.
1029
- #if !defined(BOOST_ASIO_HAS_STD_TYPE_TRAITS)
1030
- # if !defined(BOOST_ASIO_DISABLE_STD_TYPE_TRAITS)
1031
- # if defined(__clang__)
1032
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
1033
- # define BOOST_ASIO_HAS_STD_TYPE_TRAITS 1
1034
- # elif (__cplusplus >= 201103)
1035
- # if __has_include(<type_traits>)
1036
- # define BOOST_ASIO_HAS_STD_TYPE_TRAITS 1
1037
- # endif // __has_include(<type_traits>)
1038
- # endif // (__cplusplus >= 201103)
1039
- # elif defined(__GNUC__)
1040
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
1041
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1042
- # define BOOST_ASIO_HAS_STD_TYPE_TRAITS 1
1043
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1044
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
1045
- # endif // defined(__GNUC__)
1046
- # if defined(BOOST_ASIO_MSVC)
1047
- # if (_MSC_VER >= 1700)
1048
- # define BOOST_ASIO_HAS_STD_TYPE_TRAITS 1
1049
- # endif // (_MSC_VER >= 1700)
1050
- # endif // defined(BOOST_ASIO_MSVC)
1051
- # endif // !defined(BOOST_ASIO_DISABLE_STD_TYPE_TRAITS)
1052
- #endif // !defined(BOOST_ASIO_HAS_STD_TYPE_TRAITS)
1053
-
1054
- // Standard library support for the nullptr_t type.
1055
- #if !defined(BOOST_ASIO_HAS_NULLPTR)
1056
- # if !defined(BOOST_ASIO_DISABLE_NULLPTR)
1057
- # if defined(__clang__)
1058
- # if __has_feature(__cxx_nullptr__)
1059
- # define BOOST_ASIO_HAS_NULLPTR 1
1060
- # endif // __has_feature(__cxx_nullptr__)
1061
- # elif defined(__GNUC__)
1062
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
1063
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1064
- # define BOOST_ASIO_HAS_NULLPTR 1
1065
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1066
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
1067
- # endif // defined(__GNUC__)
1068
- # if defined(BOOST_ASIO_MSVC)
1069
- # if (_MSC_VER >= 1700)
1070
- # define BOOST_ASIO_HAS_NULLPTR 1
1071
- # endif // (_MSC_VER >= 1700)
1072
- # endif // defined(BOOST_ASIO_MSVC)
1073
- # endif // !defined(BOOST_ASIO_DISABLE_NULLPTR)
1074
- #endif // !defined(BOOST_ASIO_HAS_NULLPTR)
1075
-
1076
- // Standard library support for the C++11 allocator additions.
1077
- #if !defined(BOOST_ASIO_HAS_CXX11_ALLOCATORS)
1078
- # if !defined(BOOST_ASIO_DISABLE_CXX11_ALLOCATORS)
1079
- # if defined(__clang__)
1080
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
1081
- # define BOOST_ASIO_HAS_CXX11_ALLOCATORS 1
1082
- # elif (__cplusplus >= 201103)
1083
- # define BOOST_ASIO_HAS_CXX11_ALLOCATORS 1
1084
- # endif // (__cplusplus >= 201103)
1085
- # elif defined(__GNUC__)
1086
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
1087
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1088
- # define BOOST_ASIO_HAS_CXX11_ALLOCATORS 1
1089
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1090
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
1091
- # endif // defined(__GNUC__)
1092
- # if defined(BOOST_ASIO_MSVC)
1093
- # if (_MSC_VER >= 1800)
1094
- # define BOOST_ASIO_HAS_CXX11_ALLOCATORS 1
1095
- # endif // (_MSC_VER >= 1800)
1096
- # endif // defined(BOOST_ASIO_MSVC)
1097
- # endif // !defined(BOOST_ASIO_DISABLE_CXX11_ALLOCATORS)
1098
- #endif // !defined(BOOST_ASIO_HAS_CXX11_ALLOCATORS)
1099
-
1100
- // Standard library support for the cstdint header.
1101
- #if !defined(BOOST_ASIO_HAS_CSTDINT)
1102
- # if !defined(BOOST_ASIO_DISABLE_CSTDINT)
1103
- # if defined(__clang__)
1104
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
1105
- # define BOOST_ASIO_HAS_CSTDINT 1
1106
- # elif (__cplusplus >= 201103)
1107
- # define BOOST_ASIO_HAS_CSTDINT 1
1108
- # endif // (__cplusplus >= 201103)
1109
- # elif defined(__GNUC__)
1110
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
1111
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1112
- # define BOOST_ASIO_HAS_CSTDINT 1
1113
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1114
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
1115
- # endif // defined(__GNUC__)
1116
- # if defined(BOOST_ASIO_MSVC)
1117
- # if (_MSC_VER >= 1700)
1118
- # define BOOST_ASIO_HAS_CSTDINT 1
1119
- # endif // (_MSC_VER >= 1700)
1120
- # endif // defined(BOOST_ASIO_MSVC)
1121
- # endif // !defined(BOOST_ASIO_DISABLE_CSTDINT)
1122
- #endif // !defined(BOOST_ASIO_HAS_CSTDINT)
1123
-
1124
- // Standard library support for the thread class.
1125
- #if !defined(BOOST_ASIO_HAS_STD_THREAD)
1126
- # if !defined(BOOST_ASIO_DISABLE_STD_THREAD)
1127
- # if defined(__clang__)
1128
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
1129
- # define BOOST_ASIO_HAS_STD_THREAD 1
1130
- # elif (__cplusplus >= 201103)
1131
- # if __has_include(<thread>)
1132
- # define BOOST_ASIO_HAS_STD_THREAD 1
1133
- # endif // __has_include(<thread>)
1134
- # endif // (__cplusplus >= 201103)
1135
- # elif defined(__GNUC__)
1136
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
1137
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1138
- # define BOOST_ASIO_HAS_STD_THREAD 1
1139
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1140
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
1141
- # endif // defined(__GNUC__)
1142
- # if defined(BOOST_ASIO_MSVC)
1143
- # if (_MSC_VER >= 1700)
1144
- # define BOOST_ASIO_HAS_STD_THREAD 1
1145
- # endif // (_MSC_VER >= 1700)
1146
- # endif // defined(BOOST_ASIO_MSVC)
1147
- # endif // !defined(BOOST_ASIO_DISABLE_STD_THREAD)
1148
- #endif // !defined(BOOST_ASIO_HAS_STD_THREAD)
1149
-
1150
- // Standard library support for the mutex and condition variable classes.
1151
- #if !defined(BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR)
1152
- # if !defined(BOOST_ASIO_DISABLE_STD_MUTEX_AND_CONDVAR)
1153
- # if defined(__clang__)
1154
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
1155
- # define BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR 1
1156
- # elif (__cplusplus >= 201103)
1157
- # if __has_include(<mutex>)
1158
- # define BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR 1
1159
- # endif // __has_include(<mutex>)
1160
- # endif // (__cplusplus >= 201103)
1161
- # elif defined(__GNUC__)
1162
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
1163
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1164
- # define BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR 1
1165
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1166
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
1167
- # endif // defined(__GNUC__)
1168
- # if defined(BOOST_ASIO_MSVC)
1169
- # if (_MSC_VER >= 1700)
1170
- # define BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR 1
1171
- # endif // (_MSC_VER >= 1700)
1172
- # endif // defined(BOOST_ASIO_MSVC)
1173
- # endif // !defined(BOOST_ASIO_DISABLE_STD_MUTEX_AND_CONDVAR)
1174
- #endif // !defined(BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR)
1175
-
1176
- // Standard library support for the call_once function.
1177
- #if !defined(BOOST_ASIO_HAS_STD_CALL_ONCE)
1178
- # if !defined(BOOST_ASIO_DISABLE_STD_CALL_ONCE)
1179
- # if defined(__clang__)
1180
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
1181
- # define BOOST_ASIO_HAS_STD_CALL_ONCE 1
1182
- # elif (__cplusplus >= 201103)
1183
- # if __has_include(<mutex>)
1184
- # define BOOST_ASIO_HAS_STD_CALL_ONCE 1
1185
- # endif // __has_include(<mutex>)
1186
- # endif // (__cplusplus >= 201103)
1187
- # elif defined(__GNUC__)
1188
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
1189
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1190
- # define BOOST_ASIO_HAS_STD_CALL_ONCE 1
1191
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1192
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
1193
- # endif // defined(__GNUC__)
1194
- # if defined(BOOST_ASIO_MSVC)
1195
- # if (_MSC_VER >= 1700)
1196
- # define BOOST_ASIO_HAS_STD_CALL_ONCE 1
1197
- # endif // (_MSC_VER >= 1700)
1198
- # endif // defined(BOOST_ASIO_MSVC)
1199
- # endif // !defined(BOOST_ASIO_DISABLE_STD_CALL_ONCE)
1200
- #endif // !defined(BOOST_ASIO_HAS_STD_CALL_ONCE)
1201
-
1202
- // Standard library support for futures.
1203
- #if !defined(BOOST_ASIO_HAS_STD_FUTURE)
1204
- # if !defined(BOOST_ASIO_DISABLE_STD_FUTURE)
1205
- # if defined(__clang__)
1206
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
1207
- # define BOOST_ASIO_HAS_STD_FUTURE 1
1208
- # elif (__cplusplus >= 201103)
1209
- # if __has_include(<future>)
1210
- # define BOOST_ASIO_HAS_STD_FUTURE 1
1211
- # endif // __has_include(<future>)
1212
- # endif // (__cplusplus >= 201103)
1213
- # elif defined(__GNUC__)
1214
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
1215
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1216
- # define BOOST_ASIO_HAS_STD_FUTURE 1
1217
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1218
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
1219
- # endif // defined(__GNUC__)
1220
- # if defined(BOOST_ASIO_MSVC)
1221
- # if (_MSC_VER >= 1700)
1222
- # define BOOST_ASIO_HAS_STD_FUTURE 1
1223
- # endif // (_MSC_VER >= 1700)
1224
- # endif // defined(BOOST_ASIO_MSVC)
1225
- # endif // !defined(BOOST_ASIO_DISABLE_STD_FUTURE)
1226
- #endif // !defined(BOOST_ASIO_HAS_STD_FUTURE)
1227
-
1228
- // Standard library support for std::tuple.
1229
- #if !defined(BOOST_ASIO_HAS_STD_TUPLE)
1230
- # if !defined(BOOST_ASIO_DISABLE_STD_TUPLE)
1231
- # if defined(__clang__)
1232
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
1233
- # define BOOST_ASIO_HAS_STD_TUPLE 1
1234
- # elif (__cplusplus >= 201103)
1235
- # if __has_include(<tuple>)
1236
- # define BOOST_ASIO_HAS_STD_TUPLE 1
1237
- # endif // __has_include(<tuple>)
1238
- # endif // (__cplusplus >= 201103)
1239
- # elif defined(__GNUC__)
1240
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
1241
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1242
- # define BOOST_ASIO_HAS_STD_TUPLE 1
1243
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1244
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
1245
- # endif // defined(__GNUC__)
1246
- # if defined(BOOST_ASIO_MSVC)
1247
- # if (_MSC_VER >= 1700)
1248
- # define BOOST_ASIO_HAS_STD_TUPLE 1
1249
- # endif // (_MSC_VER >= 1700)
1250
- # endif // defined(BOOST_ASIO_MSVC)
1251
- # endif // !defined(BOOST_ASIO_DISABLE_STD_TUPLE)
1252
- #endif // !defined(BOOST_ASIO_HAS_STD_TUPLE)
1253
-
1254
478
  // Standard library support for std::string_view.
1255
479
  #if !defined(BOOST_ASIO_HAS_STD_STRING_VIEW)
1256
480
  # if !defined(BOOST_ASIO_DISABLE_STD_STRING_VIEW)
@@ -1322,27 +546,6 @@
1322
546
  # endif // !defined(BOOST_ASIO_DISABLE_STRING_VIEW)
1323
547
  #endif // !defined(BOOST_ASIO_HAS_STRING_VIEW)
1324
548
 
1325
- // Standard library support for iostream move construction and assignment.
1326
- #if !defined(BOOST_ASIO_HAS_STD_IOSTREAM_MOVE)
1327
- # if !defined(BOOST_ASIO_DISABLE_STD_IOSTREAM_MOVE)
1328
- # if defined(__clang__)
1329
- # if (__cplusplus >= 201103)
1330
- # define BOOST_ASIO_HAS_STD_IOSTREAM_MOVE 1
1331
- # endif // (__cplusplus >= 201103)
1332
- # elif defined(__GNUC__)
1333
- # if (__GNUC__ > 4)
1334
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1335
- # define BOOST_ASIO_HAS_STD_IOSTREAM_MOVE 1
1336
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1337
- # endif // (__GNUC__ > 4)
1338
- # elif defined(BOOST_ASIO_MSVC)
1339
- # if (_MSC_VER >= 1700)
1340
- # define BOOST_ASIO_HAS_STD_IOSTREAM_MOVE 1
1341
- # endif // (_MSC_VER >= 1700)
1342
- # endif // defined(BOOST_ASIO_MSVC)
1343
- # endif // !defined(BOOST_ASIO_DISABLE_STD_IOSTREAM_MOVE)
1344
- #endif // !defined(BOOST_ASIO_HAS_STD_IOSTREAM_MOVE)
1345
-
1346
549
  // Standard library has invoke_result (which supersedes result_of).
1347
550
  #if !defined(BOOST_ASIO_HAS_STD_INVOKE_RESULT)
1348
551
  # if !defined(BOOST_ASIO_DISABLE_STD_INVOKE_RESULT)
@@ -1358,54 +561,6 @@
1358
561
  # endif // !defined(BOOST_ASIO_DISABLE_STD_INVOKE_RESULT)
1359
562
  #endif // !defined(BOOST_ASIO_HAS_STD_INVOKE_RESULT)
1360
563
 
1361
- // Standard library support for std::exception_ptr and std::current_exception.
1362
- #if !defined(BOOST_ASIO_HAS_STD_EXCEPTION_PTR)
1363
- # if !defined(BOOST_ASIO_DISABLE_STD_EXCEPTION_PTR)
1364
- # if defined(__clang__)
1365
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
1366
- # define BOOST_ASIO_HAS_STD_EXCEPTION_PTR 1
1367
- # elif (__cplusplus >= 201103)
1368
- # define BOOST_ASIO_HAS_STD_EXCEPTION_PTR 1
1369
- # endif // (__cplusplus >= 201103)
1370
- # elif defined(__GNUC__)
1371
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
1372
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1373
- # define BOOST_ASIO_HAS_STD_EXCEPTION_PTR 1
1374
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1375
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
1376
- # endif // defined(__GNUC__)
1377
- # if defined(BOOST_ASIO_MSVC)
1378
- # if (_MSC_VER >= 1800)
1379
- # define BOOST_ASIO_HAS_STD_EXCEPTION_PTR 1
1380
- # endif // (_MSC_VER >= 1800)
1381
- # endif // defined(BOOST_ASIO_MSVC)
1382
- # endif // !defined(BOOST_ASIO_DISABLE_STD_EXCEPTION_PTR)
1383
- #endif // !defined(BOOST_ASIO_HAS_STD_EXCEPTION_PTR)
1384
-
1385
- // Standard library support for std::nested_exception.
1386
- #if !defined(BOOST_ASIO_HAS_STD_NESTED_EXCEPTION)
1387
- # if !defined(BOOST_ASIO_DISABLE_STD_NESTED_EXCEPTION)
1388
- # if defined(__clang__)
1389
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
1390
- # define BOOST_ASIO_HAS_STD_NESTED_EXCEPTION 1
1391
- # elif (__cplusplus >= 201103)
1392
- # define BOOST_ASIO_HAS_STD_NESTED_EXCEPTION 1
1393
- # endif // (__cplusplus >= 201103)
1394
- # elif defined(__GNUC__)
1395
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
1396
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1397
- # define BOOST_ASIO_HAS_STD_NESTED_EXCEPTION 1
1398
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
1399
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
1400
- # endif // defined(__GNUC__)
1401
- # if defined(BOOST_ASIO_MSVC)
1402
- # if (_MSC_VER >= 1900)
1403
- # define BOOST_ASIO_HAS_STD_NESTED_EXCEPTION 1
1404
- # endif // (_MSC_VER >= 1900)
1405
- # endif // defined(BOOST_ASIO_MSVC)
1406
- # endif // !defined(BOOST_ASIO_DISABLE_STD_NESTED_EXCEPTION)
1407
- #endif // !defined(BOOST_ASIO_HAS_STD_NESTED_EXCEPTION)
1408
-
1409
564
  // Standard library support for std::any.
1410
565
  #if !defined(BOOST_ASIO_HAS_STD_ANY)
1411
566
  # if !defined(BOOST_ASIO_DISABLE_STD_ANY)
@@ -1430,6 +585,30 @@
1430
585
  # endif // !defined(BOOST_ASIO_DISABLE_STD_ANY)
1431
586
  #endif // !defined(BOOST_ASIO_HAS_STD_ANY)
1432
587
 
588
+ // Standard library support for std::variant.
589
+ #if !defined(BOOST_ASIO_HAS_STD_VARIANT)
590
+ # if !defined(BOOST_ASIO_DISABLE_STD_VARIANT)
591
+ # if defined(__clang__)
592
+ # if (__cplusplus >= 201703)
593
+ # if __has_include(<variant>)
594
+ # define BOOST_ASIO_HAS_STD_VARIANT 1
595
+ # endif // __has_include(<variant>)
596
+ # endif // (__cplusplus >= 201703)
597
+ # elif defined(__GNUC__)
598
+ # if (__GNUC__ >= 7)
599
+ # if (__cplusplus >= 201703)
600
+ # define BOOST_ASIO_HAS_STD_VARIANT 1
601
+ # endif // (__cplusplus >= 201703)
602
+ # endif // (__GNUC__ >= 7)
603
+ # endif // defined(__GNUC__)
604
+ # if defined(BOOST_ASIO_MSVC)
605
+ # if (_MSC_VER >= 1910) && (_MSVC_LANG >= 201703)
606
+ # define BOOST_ASIO_HAS_STD_VARIANT 1
607
+ # endif // (_MSC_VER >= 1910) && (_MSVC_LANG >= 201703)
608
+ # endif // defined(BOOST_ASIO_MSVC)
609
+ # endif // !defined(BOOST_ASIO_DISABLE_STD_VARIANT)
610
+ #endif // !defined(BOOST_ASIO_HAS_STD_VARIANT)
611
+
1433
612
  // Standard library support for std::source_location.
1434
613
  #if !defined(BOOST_ASIO_HAS_STD_SOURCE_LOCATION)
1435
614
  # if !defined(BOOST_ASIO_DISABLE_STD_SOURCE_LOCATION)
@@ -1640,7 +819,7 @@
1640
819
  # include <unistd.h>
1641
820
  #endif // defined(BOOST_ASIO_HAS_UNISTD_H)
1642
821
 
1643
- // Linux: epoll, eventfd and timerfd.
822
+ // Linux: epoll, eventfd, timerfd and io_uring.
1644
823
  #if defined(__linux__)
1645
824
  # include <linux/version.h>
1646
825
  # if !defined(BOOST_ASIO_HAS_EPOLL)
@@ -1664,6 +843,11 @@
1664
843
  # endif // (__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 8)
1665
844
  # endif // defined(BOOST_ASIO_HAS_EPOLL)
1666
845
  # endif // !defined(BOOST_ASIO_HAS_TIMERFD)
846
+ # if defined(BOOST_ASIO_HAS_IO_URING)
847
+ # if LINUX_VERSION_CODE < KERNEL_VERSION(5,10,0)
848
+ # error Linux kernel 5.10 or later is required to support io_uring
849
+ # endif // LINUX_VERSION_CODE < KERNEL_VERSION(5,10,0)
850
+ # endif // defined(BOOST_ASIO_HAS_IO_URING)
1667
851
  #endif // defined(__linux__)
1668
852
 
1669
853
  // Linux: io_uring is used instead of epoll.
@@ -2003,7 +1187,7 @@
2003
1187
  # endif // !defined(BOOST_ASIO_DISABLE_HANDLER_HOOKS)
2004
1188
  #endif // !defined(BOOST_ASIO_HAS_HANDLER_HOOKS)
2005
1189
 
2006
- // Support for the __thread keyword extension.
1190
+ // Support for the __thread keyword extension, or equivalent.
2007
1191
  #if !defined(BOOST_ASIO_DISABLE_THREAD_KEYWORD_EXTENSION)
2008
1192
  # if defined(__linux__)
2009
1193
  # if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
@@ -2025,6 +1209,22 @@
2025
1209
  # define BOOST_ASIO_THREAD_KEYWORD __declspec(thread)
2026
1210
  # endif // (_MSC_VER >= 1700)
2027
1211
  # endif // defined(BOOST_ASIO_MSVC) && defined(BOOST_ASIO_WINDOWS_RUNTIME)
1212
+ # if defined(__APPLE__)
1213
+ # if defined(__clang__)
1214
+ # if defined(__apple_build_version__)
1215
+ # define BOOST_ASIO_HAS_THREAD_KEYWORD_EXTENSION 1
1216
+ # define BOOST_ASIO_THREAD_KEYWORD __thread
1217
+ # endif // defined(__apple_build_version__)
1218
+ # endif // defined(__clang__)
1219
+ # endif // defined(__APPLE__)
1220
+ # if !defined(BOOST_ASIO_HAS_THREAD_KEYWORD_EXTENSION)
1221
+ # if defined(BOOST_ASIO_HAS_BOOST_CONFIG)
1222
+ # if !defined(BOOST_NO_CXX11_THREAD_LOCAL)
1223
+ # define BOOST_ASIO_HAS_THREAD_KEYWORD_EXTENSION 1
1224
+ # define BOOST_ASIO_THREAD_KEYWORD thread_local
1225
+ # endif // !defined(BOOST_NO_CXX11_THREAD_LOCAL)
1226
+ # endif // defined(BOOST_ASIO_HAS_BOOST_CONFIG)
1227
+ # endif // !defined(BOOST_ASIO_HAS_THREAD_KEYWORD_EXTENSION)
2028
1228
  #endif // !defined(BOOST_ASIO_DISABLE_THREAD_KEYWORD_EXTENSION)
2029
1229
  #if !defined(BOOST_ASIO_THREAD_KEYWORD)
2030
1230
  # define BOOST_ASIO_THREAD_KEYWORD __thread
@@ -2078,6 +1278,22 @@
2078
1278
  # define BOOST_ASIO_UNUSED_VARIABLE
2079
1279
  #endif // !defined(BOOST_ASIO_UNUSED_VARIABLE)
2080
1280
 
1281
+ // Helper macro to tell the optimiser what may be assumed to be true.
1282
+ #if defined(BOOST_ASIO_MSVC)
1283
+ # define BOOST_ASIO_ASSUME(expr) __assume(expr)
1284
+ #elif defined(__clang__)
1285
+ # if __has_builtin(__builtin_assume)
1286
+ # define BOOST_ASIO_ASSUME(expr) __builtin_assume(expr)
1287
+ # endif // __has_builtin(__builtin_assume)
1288
+ #elif defined(__GNUC__)
1289
+ # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
1290
+ # define BOOST_ASIO_ASSUME(expr) if (expr) {} else { __builtin_unreachable(); }
1291
+ # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
1292
+ #endif // defined(__GNUC__)
1293
+ #if !defined(BOOST_ASIO_ASSUME)
1294
+ # define BOOST_ASIO_ASSUME(expr) (void)0
1295
+ #endif // !defined(BOOST_ASIO_ASSUME)
1296
+
2081
1297
  // Support the co_await keyword on compilers known to allow it.
2082
1298
  #if !defined(BOOST_ASIO_HAS_CO_AWAIT)
2083
1299
  # if !defined(BOOST_ASIO_DISABLE_CO_AWAIT)
@@ -2167,30 +1383,6 @@
2167
1383
  # endif // defined(_POSIX_VERSION)
2168
1384
  #endif // !defined(BOOST_ASIO_HAS_MSG_NOSIGNAL)
2169
1385
 
2170
- // Standard library support for std::hash.
2171
- #if !defined(BOOST_ASIO_HAS_STD_HASH)
2172
- # if !defined(BOOST_ASIO_DISABLE_STD_HASH)
2173
- # if defined(__clang__)
2174
- # if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
2175
- # define BOOST_ASIO_HAS_STD_HASH 1
2176
- # elif (__cplusplus >= 201103)
2177
- # define BOOST_ASIO_HAS_STD_HASH 1
2178
- # endif // (__cplusplus >= 201103)
2179
- # elif defined(__GNUC__)
2180
- # if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
2181
- # if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
2182
- # define BOOST_ASIO_HAS_STD_HASH 1
2183
- # endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
2184
- # endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
2185
- # endif // defined(__GNUC__)
2186
- # if defined(BOOST_ASIO_MSVC)
2187
- # if (_MSC_VER >= 1700)
2188
- # define BOOST_ASIO_HAS_STD_HASH 1
2189
- # endif // (_MSC_VER >= 1700)
2190
- # endif // defined(BOOST_ASIO_MSVC)
2191
- # endif // !defined(BOOST_ASIO_DISABLE_STD_HASH)
2192
- #endif // !defined(BOOST_ASIO_HAS_STD_HASH)
2193
-
2194
1386
  // Standard library support for std::to_address.
2195
1387
  #if !defined(BOOST_ASIO_HAS_STD_TO_ADDRESS)
2196
1388
  # if !defined(BOOST_ASIO_DISABLE_STD_TO_ADDRESS)