passenger 6.0.4 → 6.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2036) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +144 -1
  3. data/CONTRIBUTING.md +1 -1
  4. data/CONTRIBUTORS +9 -0
  5. data/README.md +2 -9
  6. data/bin/passenger-install-nginx-module +1 -1
  7. data/bin/passenger-memory-stats +65 -12
  8. data/build/common_library.rb +4 -4
  9. data/build/packaging.rb +4 -2
  10. data/build/support/cxx_dependency_map.rb +1 -0
  11. data/dev/copy_boost_headers +1 -1
  12. data/passenger.gemspec +9 -1
  13. data/resources/release.txt +1 -0
  14. data/resources/templates/config/installation_utils/user_support_binaries_dir_not_writable.txt.erb +1 -0
  15. data/resources/templates/error_renderer/with_details/dist/bundle.js +1 -1
  16. data/resources/templates/error_renderer/with_details/src/GetHelpView.jsx +1 -1
  17. data/resources/templates/error_renderer/with_details/src/bootstrap/bootstrap.css +0 -0
  18. data/resources/templates/error_renderer/with_details/src/bootstrap/bootstrap.js +0 -0
  19. data/resources/templates/error_renderer/with_details/src/bootstrap/config.json +0 -0
  20. data/resources/templates/standalone/global.erb +4 -0
  21. data/resources/templates/standalone/rails_asset_pipeline.erb +1 -1
  22. data/resources/templates/standalone/server.erb +1 -0
  23. data/src/agent/Core/AdminPanelConnector.h +1 -1
  24. data/src/agent/Core/ApplicationPool/Group.h +1 -1
  25. data/src/agent/Core/ApplicationPool/Group/InternalUtils.cpp +2 -2
  26. data/src/agent/Core/ApplicationPool/Group/OutOfBandWork.cpp +1 -1
  27. data/src/agent/Core/ApplicationPool/Group/ProcessListManagement.cpp +1 -1
  28. data/src/agent/Core/ApplicationPool/Group/StateInspection.cpp +2 -0
  29. data/src/agent/Core/ApplicationPool/Implementation.cpp +0 -1
  30. data/src/agent/Core/ApplicationPool/Options.h +21 -2
  31. data/src/agent/Core/ApplicationPool/Pool.h +1 -1
  32. data/src/agent/Core/ApplicationPool/Pool/GarbageCollection.cpp +1 -1
  33. data/src/agent/Core/ApplicationPool/Pool/ProcessUtils.cpp +1 -1
  34. data/src/agent/Core/ApplicationPool/Pool/StateInspection.cpp +1 -1
  35. data/src/agent/Core/Config.h +4 -2
  36. data/src/agent/Core/Controller.h +1 -0
  37. data/src/agent/Core/Controller/Config.h +10 -2
  38. data/src/agent/Core/Controller/ForwardResponse.cpp +13 -0
  39. data/src/agent/Core/Controller/InitRequest.cpp +5 -0
  40. data/src/agent/Core/Controller/InitializationAndShutdown.cpp +1 -0
  41. data/src/agent/Core/OptionParser.h +3 -0
  42. data/src/agent/Core/SpawningKit/Config.h +11 -0
  43. data/src/agent/Core/SpawningKit/Config/AutoGeneratedCode.h +13 -0
  44. data/src/agent/Core/SpawningKit/Handshake/BackgroundIOCapturer.h +1 -1
  45. data/src/agent/Core/SpawningKit/Handshake/Perform.h +1 -1
  46. data/src/agent/Core/SpawningKit/PipeWatcher.h +1 -1
  47. data/src/agent/Core/SpawningKit/SmartSpawner.h +1 -1
  48. data/src/agent/Core/SpawningKit/Spawner.h +2 -0
  49. data/src/agent/Core/TelemetryCollector.h +1 -1
  50. data/src/agent/Shared/ApiServerUtils.h +1 -1
  51. data/src/agent/Shared/ApplicationPoolApiKey.h +2 -0
  52. data/src/agent/TempDirToucher/TempDirToucherMain.cpp +2 -0
  53. data/src/agent/Watchdog/Config.h +3 -1
  54. data/src/agent/Watchdog/InstanceDirToucher.cpp +1 -1
  55. data/src/agent/Watchdog/WatchdogMain.cpp +1 -1
  56. data/src/apache2_module/Config.cpp +1 -1
  57. data/src/apache2_module/ConfigGeneral/AutoGeneratedDefinitions.cpp +37 -27
  58. data/src/apache2_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.cpp +10 -0
  59. data/src/apache2_module/ConfigGeneral/AutoGeneratedSetterFuncs.cpp +26 -1
  60. data/src/apache2_module/DirConfig/AutoGeneratedCreateFunction.cpp +10 -0
  61. data/src/apache2_module/DirConfig/AutoGeneratedHeaderSerialization.cpp +6 -0
  62. data/src/apache2_module/DirConfig/AutoGeneratedManifestGeneration.cpp +26 -0
  63. data/src/apache2_module/DirConfig/AutoGeneratedMergeFunction.cpp +14 -0
  64. data/src/apache2_module/DirConfig/AutoGeneratedStruct.h +36 -2
  65. data/src/apache2_module/Hooks.cpp +4 -0
  66. data/src/apache2_module/ServerConfig/AutoGeneratedStruct.h +19 -19
  67. data/src/cxx_supportlib/BackgroundEventLoop.cpp +1 -1
  68. data/src/cxx_supportlib/ConfigKit/Schema.h +1 -1
  69. data/src/cxx_supportlib/ConfigKit/Translator.h +1 -1
  70. data/src/cxx_supportlib/Constants.h +5 -3
  71. data/src/cxx_supportlib/DataStructures/HashedStaticString.h +2 -0
  72. data/src/cxx_supportlib/FileDescriptor.h +8 -0
  73. data/src/cxx_supportlib/FileTools/FileManip.cpp +10 -1
  74. data/src/cxx_supportlib/FileTools/FileManip.h +16 -0
  75. data/src/cxx_supportlib/Hooks.h +1 -0
  76. data/src/cxx_supportlib/IOTools/BufferedIO.h +1 -1
  77. data/src/cxx_supportlib/IOTools/MessageIO.h +1 -1
  78. data/src/cxx_supportlib/SafeLibev.h +1 -1
  79. data/src/cxx_supportlib/ServerKit/AcceptLoadBalancer.h +1 -1
  80. data/src/cxx_supportlib/StaticString.h +2 -0
  81. data/src/cxx_supportlib/SystemTools/ProcessMetricsCollector.h +1 -1
  82. data/src/cxx_supportlib/Utils/HttpConstants.h +1 -1
  83. data/src/cxx_supportlib/WebSocketCommandReverseServer.h +9 -12
  84. data/src/cxx_supportlib/oxt/dynamic_thread_group.hpp +5 -1
  85. data/src/cxx_supportlib/oxt/system_calls.cpp +10 -10
  86. data/src/cxx_supportlib/oxt/thread.hpp +1 -1
  87. data/src/cxx_supportlib/vendor-copy/websocketpp/changelog.md +107 -5
  88. data/src/cxx_supportlib/vendor-copy/websocketpp/readme.md +2 -2
  89. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/close.hpp +12 -1
  90. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/asio.hpp +13 -3
  91. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/memory.hpp +0 -1
  92. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/thread.hpp +6 -2
  93. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/core.hpp +13 -1
  94. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/connection.hpp +6 -15
  95. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/endpoint.hpp +24 -24
  96. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/extensions/permessage_deflate/disabled.hpp +1 -0
  97. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/extensions/permessage_deflate/enabled.hpp +84 -19
  98. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/frame.hpp +3 -0
  99. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/impl/parser.hpp +4 -0
  100. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/parser.hpp +10 -0
  101. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/impl/connection_impl.hpp +150 -147
  102. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/impl/endpoint_impl.hpp +4 -4
  103. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/base.hpp +1 -1
  104. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/hybi13.hpp +47 -25
  105. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/roles/client_endpoint.hpp +3 -3
  106. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/roles/server_endpoint.hpp +14 -9
  107. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/sha1/sha1.hpp +189 -189
  108. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/connection.hpp +59 -66
  109. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/endpoint.hpp +73 -38
  110. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/security/none.hpp +9 -7
  111. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/security/tls.hpp +12 -22
  112. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/base/endpoint.hpp +1 -1
  113. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/debug/connection.hpp +11 -11
  114. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/debug/endpoint.hpp +1 -1
  115. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/iostream/connection.hpp +13 -13
  116. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/iostream/endpoint.hpp +3 -3
  117. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/stub/connection.hpp +8 -8
  118. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/uri.hpp +1 -0
  119. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/utilities.hpp +2 -4
  120. data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/version.hpp +3 -3
  121. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/compare.hpp +3 -3
  122. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/case_conv.hpp +5 -2
  123. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/classification.hpp +3 -1
  124. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/find_format_all.hpp +2 -0
  125. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/finder.hpp +15 -15
  126. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/formatter.hpp +1 -1
  127. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/trim.hpp +3 -3
  128. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/find_format.hpp +1 -2
  129. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/formatter.hpp +0 -1
  130. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/iter_find.hpp +8 -0
  131. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/predicate.hpp +4 -3
  132. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/split.hpp +12 -0
  133. data/src/cxx_supportlib/vendor-modified/boost/array.hpp +2 -3
  134. data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +47 -17
  135. data/src/cxx_supportlib/vendor-modified/boost/asio/any_io_executor.hpp +302 -0
  136. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +2 -8
  137. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +39 -22
  138. data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +426 -65
  139. data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +135 -0
  140. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +440 -257
  141. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +178 -113
  142. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_io_object.hpp +1 -1
  143. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +441 -257
  144. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +293 -143
  145. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_serial_port.hpp +315 -96
  146. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_signal_set.hpp +245 -60
  147. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +365 -227
  148. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +983 -461
  149. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_iostream.hpp +21 -44
  150. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_streambuf.hpp +15 -35
  151. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +336 -197
  152. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf.hpp +1 -1
  153. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf_fwd.hpp +1 -1
  154. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +221 -115
  155. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +13 -49
  156. data/src/cxx_supportlib/vendor-modified/boost/asio/buffer.hpp +416 -89
  157. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream.hpp +23 -27
  158. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream_fwd.hpp +1 -1
  159. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream.hpp +31 -30
  160. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream_fwd.hpp +1 -1
  161. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream.hpp +23 -27
  162. data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream_fwd.hpp +1 -1
  163. data/src/cxx_supportlib/vendor-modified/boost/asio/buffers_iterator.hpp +1 -1
  164. data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +473 -0
  165. data/src/cxx_supportlib/vendor-modified/boost/asio/completion_condition.hpp +1 -1
  166. data/src/cxx_supportlib/vendor-modified/boost/asio/compose.hpp +138 -0
  167. data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +136 -120
  168. data/src/cxx_supportlib/vendor-modified/boost/asio/coroutine.hpp +3 -3
  169. data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer.hpp +1 -1
  170. data/src/cxx_supportlib/vendor-modified/boost/asio/defer.hpp +35 -12
  171. data/src/cxx_supportlib/vendor-modified/boost/asio/detached.hpp +114 -0
  172. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array.hpp +1 -1
  173. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array_fwd.hpp +1 -1
  174. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/assert.hpp +1 -1
  175. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/atomic_count.hpp +20 -1
  176. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_completion_cond.hpp +4 -3
  177. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +149 -27
  178. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/blocking_executor_op.hpp +109 -0
  179. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_resize_guard.hpp +1 -1
  180. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_sequence_adapter.hpp +107 -1
  181. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffered_stream_storage.hpp +1 -1
  182. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bulk_executor_op.hpp +90 -0
  183. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/call_stack.hpp +1 -1
  184. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono.hpp +1 -1
  185. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono_time_traits.hpp +1 -1
  186. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_handler.hpp +11 -6
  187. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/concurrency_hint.hpp +1 -1
  188. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_event.hpp +9 -1
  189. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_mutex.hpp +1 -1
  190. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +531 -136
  191. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/consuming_buffers.hpp +1 -1
  192. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstddef.hpp +1 -1
  193. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstdint.hpp +1 -1
  194. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/date_time_fwd.hpp +1 -1
  195. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +29 -12
  196. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dependent_type.hpp +1 -1
  197. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_ops.hpp +25 -7
  198. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_read_op.hpp +36 -16
  199. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_write_op.hpp +36 -16
  200. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +1 -1
  201. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +1 -1
  202. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/event.hpp +1 -1
  203. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/eventfd_select_interrupter.hpp +2 -2
  204. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_function.hpp +206 -0
  205. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_op.hpp +1 -1
  206. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fd_set_adapter.hpp +1 -1
  207. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fenced_block.hpp +1 -1
  208. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +1 -1
  209. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/future.hpp +1 -1
  210. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_arm_fenced_block.hpp +1 -1
  211. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_hppa_fenced_block.hpp +1 -1
  212. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_sync_fenced_block.hpp +1 -1
  213. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_x86_fenced_block.hpp +1 -1
  214. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/global.hpp +1 -1
  215. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +55 -6
  216. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_cont_helpers.hpp +1 -1
  217. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_invoke_helpers.hpp +24 -1
  218. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_tracking.hpp +27 -1
  219. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +1 -1
  220. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +454 -35
  221. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/hash_map.hpp +1 -1
  222. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/buffer_sequence_adapter.ipp +1 -1
  223. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/descriptor_ops.ipp +218 -84
  224. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +1 -1
  225. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +1 -1
  226. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +1 -1
  227. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +1 -1
  228. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/eventfd_select_interrupter.ipp +20 -14
  229. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/handler_tracking.ipp +40 -2
  230. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +1 -1
  231. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +6 -2
  232. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/null_event.ipp +1 -1
  233. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/pipe_select_interrupter.ipp +11 -6
  234. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_event.ipp +8 -4
  235. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_mutex.ipp +1 -1
  236. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_thread.ipp +1 -1
  237. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_tss_ptr.ipp +1 -1
  238. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_descriptor_service.ipp +5 -4
  239. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_serial_port_service.ipp +16 -19
  240. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_socket_service_base.ipp +4 -4
  241. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/resolver_service_base.ipp +37 -33
  242. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/scheduler.ipp +92 -4
  243. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +1 -1
  244. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +8 -3
  245. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.hpp +1 -1
  246. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.ipp +1 -1
  247. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/signal_set_service.ipp +22 -23
  248. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_ops.ipp +678 -285
  249. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_select_interrupter.ipp +15 -6
  250. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +198 -25
  251. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.ipp +25 -1
  252. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.hpp +7 -38
  253. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.ipp +34 -9
  254. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/thread_context.ipp +37 -0
  255. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/throw_error.ipp +1 -1
  256. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +1 -1
  257. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_set.ipp +1 -1
  258. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_control.hpp +1 -1
  259. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_object_impl.hpp +174 -0
  260. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_buffer_sequence.hpp +65 -16
  261. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_executor.hpp +1 -1
  262. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/keyword_tss_ptr.hpp +1 -1
  263. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +1 -1
  264. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/local_free_on_block_exit.hpp +1 -1
  265. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/macos_fenced_block.hpp +1 -1
  266. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +4 -1
  267. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/mutex.hpp +1 -1
  268. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/non_const_lvalue.hpp +56 -0
  269. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/noncopyable.hpp +1 -1
  270. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_event.hpp +7 -1
  271. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_fenced_block.hpp +1 -1
  272. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_global.hpp +1 -1
  273. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_mutex.hpp +1 -1
  274. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_reactor.hpp +1 -1
  275. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_signal_blocker.hpp +1 -1
  276. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_socket_service.hpp +63 -52
  277. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_static_mutex.hpp +1 -1
  278. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_thread.hpp +1 -1
  279. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_tss_ptr.hpp +1 -1
  280. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/object_pool.hpp +1 -1
  281. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/old_win_sdk_compat.hpp +1 -1
  282. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/op_queue.hpp +1 -1
  283. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/operation.hpp +1 -1
  284. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pipe_select_interrupter.hpp +2 -2
  285. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +14 -8
  286. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_event.hpp +15 -2
  287. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_fd_set_adapter.hpp +1 -1
  288. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_global.hpp +1 -1
  289. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_mutex.hpp +1 -1
  290. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_signal_blocker.hpp +1 -1
  291. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_static_mutex.hpp +1 -1
  292. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_thread.hpp +1 -1
  293. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_tss_ptr.hpp +1 -1
  294. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +22 -6
  295. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +62 -34
  296. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_null_buffers_op.hpp +15 -7
  297. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_serial_port_service.hpp +15 -14
  298. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_accept_op.hpp +53 -28
  299. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_connect_op.hpp +20 -10
  300. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recv_op.hpp +43 -19
  301. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvfrom_op.hpp +42 -16
  302. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvmsg_op.hpp +26 -13
  303. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_send_op.hpp +48 -20
  304. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_sendto_op.hpp +43 -17
  305. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +82 -80
  306. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +77 -47
  307. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_wait_op.hpp +15 -7
  308. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor.hpp +1 -1
  309. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_fwd.hpp +1 -1
  310. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +4 -2
  311. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +1 -1
  312. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/recycling_allocator.hpp +16 -16
  313. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/regex_fwd.hpp +11 -2
  314. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +31 -13
  315. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_op.hpp +1 -1
  316. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_query_op.hpp +32 -16
  317. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service.hpp +22 -22
  318. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service_base.hpp +37 -19
  319. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler.hpp +22 -6
  320. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_operation.hpp +1 -1
  321. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_thread_info.hpp +1 -1
  322. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_lock.hpp +1 -1
  323. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_ptr.hpp +1 -1
  324. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_interrupter.hpp +1 -1
  325. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +1 -1
  326. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/service_registry.hpp +1 -1
  327. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_blocker.hpp +1 -1
  328. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_handler.hpp +11 -7
  329. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_init.hpp +1 -1
  330. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_op.hpp +1 -1
  331. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_set_service.hpp +24 -12
  332. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_holder.hpp +1 -1
  333. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_ops.hpp +47 -1
  334. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_option.hpp +1 -1
  335. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_select_interrupter.hpp +2 -2
  336. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_types.hpp +2 -1
  337. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/solaris_fenced_block.hpp +1 -1
  338. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/source_location.hpp +47 -0
  339. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/static_mutex.hpp +1 -1
  340. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_event.hpp +13 -1
  341. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_fenced_block.hpp +1 -1
  342. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_global.hpp +1 -1
  343. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_mutex.hpp +1 -1
  344. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_static_mutex.hpp +1 -1
  345. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_thread.hpp +1 -1
  346. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_executor_service.hpp +33 -2
  347. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_service.hpp +8 -6
  348. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/string_view.hpp +1 -1
  349. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread.hpp +5 -5
  350. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_context.hpp +10 -1
  351. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_group.hpp +11 -1
  352. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +72 -3
  353. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_error.hpp +1 -1
  354. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_exception.hpp +1 -1
  355. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +1 -1
  356. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_base.hpp +1 -1
  357. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +1 -1
  358. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_set.hpp +1 -1
  359. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler.hpp +1 -1
  360. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler_fwd.hpp +1 -1
  361. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/tss_ptr.hpp +1 -1
  362. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/type_traits.hpp +73 -3
  363. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/variadic_templates.hpp +177 -2
  364. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_handler.hpp +13 -8
  365. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +1 -1
  366. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/winsock_init.hpp +1 -1
  367. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +84 -8
  368. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wrapped_handler.hpp +46 -10
  369. data/src/cxx_supportlib/vendor-modified/boost/asio/dispatch.hpp +29 -16
  370. data/src/cxx_supportlib/vendor-modified/boost/asio/error.hpp +1 -1
  371. data/src/cxx_supportlib/vendor-modified/boost/asio/execution.hpp +48 -0
  372. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/allocator.hpp +339 -0
  373. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +2348 -0
  374. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bad_executor.hpp +49 -0
  375. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking.hpp +1553 -0
  376. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking_adaptation.hpp +1214 -0
  377. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_execute.hpp +399 -0
  378. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_guarantee.hpp +1217 -0
  379. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/connect.hpp +493 -0
  380. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context.hpp +235 -0
  381. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context_as.hpp +223 -0
  382. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_invocable.hpp +154 -0
  383. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_operation.hpp +107 -0
  384. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_receiver.hpp +130 -0
  385. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/bulk_sender.hpp +263 -0
  386. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/submit_receiver.hpp +235 -0
  387. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/void_receiver.hpp +92 -0
  388. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/execute.hpp +289 -0
  389. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/executor.hpp +254 -0
  390. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/bad_executor.ipp +42 -0
  391. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/receiver_invocation_error.ipp +38 -0
  392. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/invocable_archetype.hpp +73 -0
  393. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/mapping.hpp +1118 -0
  394. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/occupancy.hpp +228 -0
  395. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/operation_state.hpp +96 -0
  396. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/outstanding_work.hpp +869 -0
  397. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/prefer_only.hpp +333 -0
  398. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver.hpp +282 -0
  399. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver_invocation_error.hpp +50 -0
  400. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/relationship.hpp +867 -0
  401. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/schedule.hpp +291 -0
  402. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/scheduler.hpp +88 -0
  403. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/sender.hpp +313 -0
  404. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_done.hpp +254 -0
  405. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_error.hpp +254 -0
  406. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_value.hpp +487 -0
  407. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/start.hpp +251 -0
  408. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/submit.hpp +454 -0
  409. data/src/cxx_supportlib/vendor-modified/boost/asio/execution_context.hpp +3 -2
  410. data/src/cxx_supportlib/vendor-modified/boost/asio/executor.hpp +8 -2
  411. data/src/cxx_supportlib/vendor-modified/boost/asio/executor_work_guard.hpp +145 -13
  412. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_single.hpp +137 -0
  413. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +245 -0
  414. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/basic_endpoint.hpp +2 -2
  415. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/datagram_protocol.hpp +4 -4
  416. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/endpoint.hpp +1 -1
  417. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/impl/endpoint.ipp +1 -1
  418. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/raw_protocol.hpp +4 -4
  419. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/seq_packet_protocol.hpp +4 -4
  420. data/src/cxx_supportlib/vendor-modified/boost/asio/generic/stream_protocol.hpp +4 -4
  421. data/src/cxx_supportlib/vendor-modified/boost/asio/handler_alloc_hook.hpp +29 -6
  422. data/src/cxx_supportlib/vendor-modified/boost/asio/handler_continuation_hook.hpp +1 -1
  423. data/src/cxx_supportlib/vendor-modified/boost/asio/handler_invoke_hook.hpp +30 -4
  424. data/src/cxx_supportlib/vendor-modified/boost/asio/high_resolution_timer.hpp +1 -1
  425. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +438 -0
  426. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +156 -56
  427. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +150 -52
  428. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +300 -0
  429. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/compose.hpp +639 -0
  430. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +317 -261
  431. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/defer.hpp +210 -35
  432. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/detached.hpp +132 -0
  433. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/dispatch.hpp +205 -36
  434. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/error.ipp +1 -1
  435. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.hpp +8 -6
  436. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.ipp +1 -1
  437. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.hpp +16 -102
  438. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.ipp +6 -1
  439. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +16 -7
  440. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.hpp +214 -115
  441. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.ipp +4 -3
  442. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/multiple_exceptions.ipp +51 -0
  443. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/post.hpp +210 -35
  444. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +657 -158
  445. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +195 -91
  446. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +2321 -452
  447. data/src/cxx_supportlib/vendor-modified/boost/asio/{experimental/impl → impl}/redirect_error.hpp +149 -52
  448. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.hpp +1 -1
  449. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.ipp +1 -1
  450. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +63 -71
  451. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.hpp +5 -1
  452. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.hpp +1 -1
  453. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.ipp +25 -6
  454. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_executor.hpp +114 -14
  455. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.hpp +266 -39
  456. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.ipp +73 -8
  457. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +281 -0
  458. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_future.hpp +131 -40
  459. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +600 -158
  460. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +186 -92
  461. data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +734 -60
  462. data/src/cxx_supportlib/vendor-modified/boost/asio/io_context_strand.hpp +46 -54
  463. data/src/cxx_supportlib/vendor-modified/boost/asio/io_service.hpp +1 -1
  464. data/src/cxx_supportlib/vendor-modified/boost/asio/io_service_strand.hpp +1 -1
  465. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address.hpp +57 -27
  466. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4.hpp +52 -26
  467. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_iterator.hpp +1 -1
  468. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_range.hpp +1 -1
  469. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6.hpp +85 -39
  470. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_iterator.hpp +1 -1
  471. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_range.hpp +1 -1
  472. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/bad_address_cast.hpp +1 -1
  473. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_endpoint.hpp +51 -23
  474. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver.hpp +246 -190
  475. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_entry.hpp +1 -1
  476. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_iterator.hpp +1 -1
  477. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_query.hpp +1 -1
  478. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_results.hpp +1 -1
  479. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/endpoint.hpp +21 -19
  480. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/impl/endpoint.ipp +10 -10
  481. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/socket_option.hpp +1 -1
  482. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/host_name.hpp +1 -1
  483. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/icmp.hpp +7 -7
  484. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.hpp +1 -1
  485. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.ipp +23 -18
  486. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.hpp +1 -1
  487. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.ipp +11 -11
  488. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.hpp +1 -1
  489. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.ipp +27 -27
  490. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/basic_endpoint.hpp +1 -1
  491. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/host_name.ipp +1 -1
  492. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.hpp +1 -1
  493. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.ipp +1 -1
  494. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.hpp +1 -1
  495. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.ipp +1 -1
  496. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/multicast.hpp +8 -8
  497. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v4.hpp +1 -1
  498. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v6.hpp +1 -1
  499. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_base.hpp +1 -1
  500. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_query_base.hpp +1 -1
  501. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/tcp.hpp +9 -9
  502. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/udp.hpp +7 -7
  503. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/unicast.hpp +3 -3
  504. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/v6_only.hpp +3 -3
  505. data/src/cxx_supportlib/vendor-modified/boost/asio/is_applicable_property.hpp +63 -0
  506. data/src/cxx_supportlib/vendor-modified/boost/asio/is_executor.hpp +1 -1
  507. data/src/cxx_supportlib/vendor-modified/boost/asio/is_read_buffered.hpp +1 -1
  508. data/src/cxx_supportlib/vendor-modified/boost/asio/is_write_buffered.hpp +1 -1
  509. data/src/cxx_supportlib/vendor-modified/boost/asio/local/basic_endpoint.hpp +10 -2
  510. data/src/cxx_supportlib/vendor-modified/boost/asio/local/connect_pair.hpp +14 -19
  511. data/src/cxx_supportlib/vendor-modified/boost/asio/local/datagram_protocol.hpp +4 -4
  512. data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/endpoint.hpp +7 -1
  513. data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +8 -1
  514. data/src/cxx_supportlib/vendor-modified/boost/asio/local/stream_protocol.hpp +4 -4
  515. data/src/cxx_supportlib/vendor-modified/boost/asio/multiple_exceptions.hpp +60 -0
  516. data/src/cxx_supportlib/vendor-modified/boost/asio/packaged_task.hpp +1 -1
  517. data/src/cxx_supportlib/vendor-modified/boost/asio/placeholders.hpp +1 -1
  518. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +190 -74
  519. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +187 -68
  520. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor.hpp +5 -612
  521. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor_base.hpp +2 -2
  522. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor.hpp +3 -326
  523. data/src/cxx_supportlib/vendor-modified/boost/asio/post.hpp +31 -12
  524. data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +738 -0
  525. data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +328 -0
  526. data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +434 -81
  527. data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +51 -28
  528. data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +1497 -424
  529. data/src/cxx_supportlib/vendor-modified/boost/asio/{experimental/redirect_error.hpp → redirect_error.hpp} +9 -10
  530. data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +575 -0
  531. data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +356 -0
  532. data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port.hpp +3 -736
  533. data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_base.hpp +1 -1
  534. data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set.hpp +3 -422
  535. data/src/cxx_supportlib/vendor-modified/boost/asio/socket_base.hpp +26 -26
  536. data/src/cxx_supportlib/vendor-modified/boost/asio/spawn.hpp +16 -8
  537. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl.hpp +2 -1
  538. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context.hpp +4 -1
  539. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context_base.hpp +1 -1
  540. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +6 -1
  541. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +6 -1
  542. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +6 -1
  543. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +37 -10
  544. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/openssl_init.ipp +3 -3
  545. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +52 -8
  546. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_init.hpp +1 -1
  547. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_types.hpp +5 -1
  548. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/password_callback.hpp +1 -1
  549. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +6 -1
  550. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +17 -2
  551. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +41 -6
  552. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/verify_callback.hpp +1 -1
  553. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +11 -2
  554. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/error.hpp +21 -7
  555. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/host_name_verification.hpp +92 -0
  556. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.hpp +1 -1
  557. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +44 -10
  558. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/error.ipp +3 -1
  559. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/host_name_verification.ipp +75 -0
  560. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/rfc2818_verification.ipp +5 -1
  561. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/src.hpp +2 -1
  562. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/rfc2818_verification.hpp +7 -3
  563. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +235 -97
  564. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream_base.hpp +1 -1
  565. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_context.hpp +1 -1
  566. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_mode.hpp +1 -1
  567. data/src/cxx_supportlib/vendor-modified/boost/asio/static_thread_pool.hpp +33 -0
  568. data/src/cxx_supportlib/vendor-modified/boost/asio/steady_timer.hpp +1 -1
  569. data/src/cxx_supportlib/vendor-modified/boost/asio/strand.hpp +296 -13
  570. data/src/cxx_supportlib/vendor-modified/boost/asio/streambuf.hpp +1 -1
  571. data/src/cxx_supportlib/vendor-modified/boost/asio/system_context.hpp +16 -4
  572. data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +580 -25
  573. data/src/cxx_supportlib/vendor-modified/boost/asio/system_timer.hpp +1 -1
  574. data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +47 -0
  575. data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +937 -38
  576. data/src/cxx_supportlib/vendor-modified/boost/asio/time_traits.hpp +1 -1
  577. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/bulk_execute_free.hpp +116 -0
  578. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/bulk_execute_member.hpp +116 -0
  579. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/connect_free.hpp +114 -0
  580. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/connect_member.hpp +114 -0
  581. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/equality_comparable.hpp +106 -0
  582. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_free.hpp +110 -0
  583. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_member.hpp +110 -0
  584. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_free.hpp +110 -0
  585. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_member.hpp +110 -0
  586. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_free.hpp +110 -0
  587. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_member.hpp +110 -0
  588. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_static_constexpr_member.hpp +110 -0
  589. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_free.hpp +110 -0
  590. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_member.hpp +110 -0
  591. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_free.hpp +110 -0
  592. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_member.hpp +110 -0
  593. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/schedule_free.hpp +110 -0
  594. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/schedule_member.hpp +110 -0
  595. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_done_free.hpp +110 -0
  596. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_done_member.hpp +110 -0
  597. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_error_free.hpp +114 -0
  598. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_error_member.hpp +114 -0
  599. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_value_free.hpp +236 -0
  600. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_value_member.hpp +236 -0
  601. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/start_free.hpp +110 -0
  602. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/start_member.hpp +110 -0
  603. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_query.hpp +110 -0
  604. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require.hpp +125 -0
  605. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require_concept.hpp +126 -0
  606. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/submit_free.hpp +114 -0
  607. data/src/cxx_supportlib/vendor-modified/boost/asio/traits/submit_member.hpp +114 -0
  608. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/buffer.hpp +1 -1
  609. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/executor.hpp +2 -2
  610. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/internet.hpp +1 -1
  611. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/io_context.hpp +1 -1
  612. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/net.hpp +1 -1
  613. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/netfwd.hpp +93 -36
  614. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/socket.hpp +1 -1
  615. data/src/cxx_supportlib/vendor-modified/boost/asio/ts/timer.hpp +1 -1
  616. data/src/cxx_supportlib/vendor-modified/boost/asio/unyield.hpp +1 -1
  617. data/src/cxx_supportlib/vendor-modified/boost/asio/use_awaitable.hpp +171 -0
  618. data/src/cxx_supportlib/vendor-modified/boost/asio/use_future.hpp +1 -1
  619. data/src/cxx_supportlib/vendor-modified/boost/asio/uses_executor.hpp +1 -1
  620. data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +2 -2
  621. data/src/cxx_supportlib/vendor-modified/boost/asio/wait_traits.hpp +1 -1
  622. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_object_handle.hpp +295 -42
  623. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_overlapped_handle.hpp +363 -0
  624. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +186 -72
  625. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +188 -73
  626. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle.hpp +3 -346
  627. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_handle.hpp +4 -296
  628. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_ptr.hpp +38 -9
  629. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle.hpp +3 -344
  630. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle.hpp +3 -328
  631. data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +408 -78
  632. data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +51 -28
  633. data/src/cxx_supportlib/vendor-modified/boost/asio/yield.hpp +1 -1
  634. data/src/cxx_supportlib/vendor-modified/boost/assert/source_location.hpp +99 -0
  635. data/src/cxx_supportlib/vendor-modified/boost/atomic.hpp +9 -0
  636. data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic.hpp +178 -11
  637. data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_flag.hpp +12 -3
  638. data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_ref.hpp +85 -0
  639. data/src/cxx_supportlib/vendor-modified/boost/atomic/capabilities.hpp +2 -191
  640. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/addressof.hpp +3 -0
  641. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/aligned_variable.hpp +57 -0
  642. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_flag_impl.hpp +129 -0
  643. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{atomic_template.hpp → atomic_impl.hpp} +327 -429
  644. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_ref_impl.hpp +1126 -0
  645. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_cast.hpp +23 -4
  646. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_fp_cast.hpp +3 -0
  647. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/capabilities.hpp +217 -0
  648. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_aarch32.hpp +46 -0
  649. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_aarch64.hpp +58 -0
  650. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{caps_gcc_alpha.hpp → caps_arch_gcc_alpha.hpp} +4 -4
  651. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{hwcaps_gcc_arm.hpp → caps_arch_gcc_arm.hpp} +37 -8
  652. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{hwcaps_gcc_ppc.hpp → caps_arch_gcc_ppc.hpp} +19 -6
  653. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{caps_gcc_sparc.hpp → caps_arch_gcc_sparc.hpp} +4 -4
  654. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{hwcaps_gcc_x86.hpp → caps_arch_gcc_x86.hpp} +22 -6
  655. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{caps_msvc_arm.hpp → caps_arch_msvc_arm.hpp} +4 -4
  656. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{caps_msvc_x86.hpp → caps_arch_msvc_x86.hpp} +12 -6
  657. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_atomic.hpp +100 -75
  658. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_sync.hpp +0 -7
  659. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/cas_based_exchange.hpp +50 -0
  660. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/classify.hpp +81 -0
  661. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +39 -15
  662. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_operations.hpp +50 -0
  663. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_operations_fwd.hpp +38 -0
  664. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_aarch32.hpp +1121 -0
  665. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_aarch64.hpp +1909 -0
  666. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_gcc_alpha.hpp → core_arch_ops_gcc_alpha.hpp} +280 -289
  667. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_gcc_arm.hpp → core_arch_ops_gcc_arm.hpp} +467 -447
  668. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_gcc_ppc.hpp → core_arch_ops_gcc_ppc.hpp} +75 -94
  669. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_gcc_sparc.hpp → core_arch_ops_gcc_sparc.hpp} +33 -58
  670. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_gcc_x86_dcas.hpp → core_arch_ops_gcc_x86.hpp} +507 -20
  671. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_msvc_arm.hpp → core_arch_ops_msvc_arm.hpp} +62 -58
  672. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_msvc_x86.hpp → core_arch_ops_msvc_x86.hpp} +69 -101
  673. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations.hpp +49 -0
  674. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations_emulated.hpp +195 -0
  675. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations_emulated_fwd.hpp +38 -0
  676. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations_fwd.hpp +38 -0
  677. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_cas_based.hpp → core_ops_cas_based.hpp} +9 -22
  678. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_ops_gcc_atomic.hpp +306 -0
  679. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_gcc_sync.hpp → core_ops_gcc_sync.hpp} +75 -52
  680. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_linux_arm.hpp → core_ops_linux_arm.hpp} +32 -43
  681. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_ops_windows.hpp +201 -0
  682. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_extending_cas_based.hpp → extending_cas_based_arithmetic.hpp} +12 -9
  683. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_operations_fwd.hpp +4 -1
  684. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_ops_emulated.hpp +23 -12
  685. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_ops_generic.hpp +12 -9
  686. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_operations_fwd.hpp +4 -1
  687. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_emulated.hpp +60 -40
  688. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_aarch32.hpp +1060 -0
  689. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_aarch64.hpp +1330 -0
  690. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_arm.hpp +363 -355
  691. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_ppc.hpp +94 -91
  692. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_x86.hpp +232 -102
  693. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_generic.hpp +9 -17
  694. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_msvc_arm.hpp +6 -4
  695. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_msvc_x86.hpp +119 -92
  696. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_operations.hpp +41 -0
  697. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_aarch32.hpp +60 -0
  698. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_aarch64.hpp +58 -0
  699. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_alpha.hpp +53 -0
  700. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_arm.hpp +90 -0
  701. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_ppc.hpp +68 -0
  702. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_sparc.hpp +70 -0
  703. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_x86.hpp +69 -0
  704. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_msvc_arm.hpp +66 -0
  705. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_msvc_x86.hpp +66 -0
  706. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_operations.hpp +41 -0
  707. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_operations_emulated.hpp +50 -0
  708. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_ops_gcc_atomic.hpp +75 -0
  709. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_ops_gcc_sync.hpp +53 -0
  710. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_ops_linux_arm.hpp +64 -0
  711. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_ops_windows.hpp +67 -0
  712. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/footer.hpp +24 -0
  713. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fp_operations_fwd.hpp +4 -1
  714. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fp_ops_emulated.hpp +14 -8
  715. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fp_ops_generic.hpp +6 -3
  716. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/futex.hpp +147 -0
  717. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_arm_asm_common.hpp +75 -0
  718. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_atomic_memory_order_utils.hpp +66 -0
  719. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/header.hpp +72 -0
  720. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/int_sizes.hpp +25 -1
  721. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{integral_extend.hpp → integral_conversions.hpp} +8 -5
  722. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/interlocked.hpp +35 -11
  723. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/intptr.hpp +46 -0
  724. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/lock_pool.hpp +151 -0
  725. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/memory_order_utils.hpp +47 -0
  726. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/once_flag.hpp +43 -0
  727. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_aarch32_common.hpp +53 -0
  728. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_aarch64_common.hpp +53 -0
  729. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_arm_common.hpp +8 -79
  730. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_ppc_common.hpp +4 -1
  731. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_msvc_common.hpp +7 -2
  732. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/pause.hpp +23 -5
  733. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/platform.hpp +64 -27
  734. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/storage_traits.hpp +187 -0
  735. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/alignment_of.hpp +51 -0
  736. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_floating_point.hpp +3 -2
  737. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_trivially_copyable.hpp +45 -0
  738. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_capabilities.hpp +363 -0
  739. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_dragonfly_umtx.hpp +30 -0
  740. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_freebsd_umtx.hpp +40 -0
  741. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_futex.hpp +31 -0
  742. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_windows.hpp +55 -0
  743. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_operations.hpp +28 -0
  744. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_operations_fwd.hpp +43 -0
  745. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_dragonfly_umtx.hpp +75 -0
  746. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_emulated.hpp +97 -0
  747. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_freebsd_umtx.hpp +119 -0
  748. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_futex.hpp +111 -0
  749. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_generic.hpp +143 -0
  750. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_windows.hpp +150 -0
  751. data/src/cxx_supportlib/vendor-modified/boost/atomic/fences.hpp +7 -18
  752. data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic.hpp +85 -0
  753. data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_flag.hpp +40 -0
  754. data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_ref.hpp +85 -0
  755. data/src/cxx_supportlib/vendor-modified/boost/bind/apply.hpp +13 -0
  756. data/src/cxx_supportlib/vendor-modified/boost/bind/bind.hpp +14 -34
  757. data/src/cxx_supportlib/vendor-modified/boost/bind/bind_mf2_cc.hpp +18 -18
  758. data/src/cxx_supportlib/vendor-modified/boost/bind/bind_template.hpp +1 -1
  759. data/src/cxx_supportlib/vendor-modified/boost/bind/detail/result_traits.hpp +154 -0
  760. data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn.hpp +25 -11
  761. data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn_cc.hpp +18 -18
  762. data/src/cxx_supportlib/vendor-modified/boost/bind/placeholders.hpp +13 -1
  763. data/src/cxx_supportlib/vendor-modified/boost/bind/protect.hpp +52 -8
  764. data/src/cxx_supportlib/vendor-modified/boost/bind/std_placeholders.hpp +39 -0
  765. data/src/cxx_supportlib/vendor-modified/boost/bind/storage.hpp +1 -1
  766. data/src/cxx_supportlib/vendor-modified/boost/cerrno.hpp +4 -320
  767. data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/posix/chrono.hpp +26 -6
  768. data/src/cxx_supportlib/vendor-modified/boost/chrono/system_clocks.hpp +2 -2
  769. data/src/cxx_supportlib/vendor-modified/boost/circular_buffer.hpp +9 -6
  770. data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/base.hpp +113 -111
  771. data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/details.hpp +21 -21
  772. data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/space_optimized.hpp +27 -33
  773. data/src/cxx_supportlib/vendor-modified/boost/concept/assert.hpp +1 -1
  774. data/src/cxx_supportlib/vendor-modified/boost/concept/detail/general.hpp +21 -0
  775. data/src/cxx_supportlib/vendor-modified/boost/concept/usage.hpp +7 -0
  776. data/src/cxx_supportlib/vendor-modified/boost/concept_check.hpp +1 -1
  777. data/src/cxx_supportlib/vendor-modified/boost/config/abi_prefix.hpp +1 -1
  778. data/src/cxx_supportlib/vendor-modified/boost/config/abi_suffix.hpp +1 -3
  779. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx03.hpp +214 -0
  780. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx11.hpp +215 -0
  781. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx14.hpp +47 -0
  782. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx17.hpp +59 -0
  783. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx98.hpp +23 -0
  784. data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +72 -22
  785. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/borland.hpp +4 -1
  786. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang.hpp +13 -0
  787. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/codegear.hpp +155 -10
  788. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/common_edg.hpp +2 -0
  789. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/cray.hpp +5 -0
  790. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/digitalmars.hpp +2 -0
  791. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc.hpp +21 -5
  792. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc_xml.hpp +2 -0
  793. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/hp_acc.hpp +1 -0
  794. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/intel.hpp +7 -0
  795. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/metrowerks.hpp +2 -0
  796. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/mpw.hpp +2 -0
  797. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/pathscale.hpp +2 -0
  798. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/sunpro_cc.hpp +2 -0
  799. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/vacpp.hpp +2 -0
  800. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/visualc.hpp +26 -7
  801. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp.hpp +5 -0
  802. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp_zos.hpp +2 -0
  803. data/src/cxx_supportlib/vendor-modified/boost/config/detail/cxx_composite.hpp +186 -0
  804. data/src/cxx_supportlib/vendor-modified/boost/config/detail/select_compiler_config.hpp +1 -1
  805. data/src/cxx_supportlib/vendor-modified/boost/config/detail/select_stdlib_config.hpp +13 -2
  806. data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +105 -6
  807. data/src/cxx_supportlib/vendor-modified/boost/config/platform/cygwin.hpp +3 -0
  808. data/src/cxx_supportlib/vendor-modified/boost/config/platform/vxworks.hpp +63 -74
  809. data/src/cxx_supportlib/vendor-modified/boost/config/requires_threads.hpp +1 -1
  810. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +19 -6
  811. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcomo.hpp +1 -0
  812. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +23 -1
  813. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +53 -1
  814. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/modena.hpp +1 -0
  815. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/msl.hpp +1 -0
  816. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/roguewave.hpp +2 -1
  817. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/sgi.hpp +1 -0
  818. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/stlport.hpp +6 -5
  819. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/vacpp.hpp +1 -0
  820. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/xlcpp_zos.hpp +1 -0
  821. data/src/cxx_supportlib/vendor-modified/boost/config/user.hpp +2 -2
  822. data/src/cxx_supportlib/vendor-modified/boost/config/workaround.hpp +15 -0
  823. data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +18 -10
  824. data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +20 -17
  825. data/src/cxx_supportlib/vendor-modified/boost/container/allocator_traits.hpp +28 -3
  826. data/src/cxx_supportlib/vendor-modified/boost/container/container_fwd.hpp +123 -29
  827. data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +320 -226
  828. data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool_impl.hpp +4 -3
  829. data/src/cxx_supportlib/vendor-modified/boost/container/detail/advanced_insert_int.hpp +123 -51
  830. data/src/cxx_supportlib/vendor-modified/boost/container/detail/algorithm.hpp +28 -0
  831. data/src/cxx_supportlib/vendor-modified/boost/container/detail/alloc_helpers.hpp +6 -6
  832. data/src/cxx_supportlib/vendor-modified/boost/container/detail/alloc_lib.h +4 -4
  833. data/src/cxx_supportlib/vendor-modified/boost/container/detail/block_list.hpp +2 -1
  834. data/src/cxx_supportlib/vendor-modified/boost/container/detail/block_slist.hpp +2 -1
  835. data/src/cxx_supportlib/vendor-modified/boost/container/detail/compare_functors.hpp +3 -2
  836. data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_begin.hpp +0 -3
  837. data/src/cxx_supportlib/vendor-modified/boost/container/detail/container_or_allocator_rebind.hpp +4 -0
  838. data/src/cxx_supportlib/vendor-modified/boost/container/detail/container_rebind.hpp +21 -116
  839. data/src/cxx_supportlib/vendor-modified/boost/container/detail/copy_move_algo.hpp +152 -43
  840. data/src/cxx_supportlib/vendor-modified/boost/container/detail/destroyers.hpp +100 -31
  841. data/src/cxx_supportlib/vendor-modified/boost/container/detail/dispatch_uses_allocator.hpp +38 -38
  842. data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +171 -114
  843. data/src/cxx_supportlib/vendor-modified/boost/container/detail/guards_dended.hpp +198 -0
  844. data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_container.hpp +17 -0
  845. data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_contiguous_container.hpp +35 -0
  846. data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterators.hpp +133 -117
  847. data/src/cxx_supportlib/vendor-modified/boost/container/detail/mpl.hpp +2 -2
  848. data/src/cxx_supportlib/vendor-modified/boost/container/detail/multiallocation_chain.hpp +12 -8
  849. data/src/cxx_supportlib/vendor-modified/boost/container/detail/mutex.hpp +4 -15
  850. data/src/cxx_supportlib/vendor-modified/boost/container/detail/next_capacity.hpp +22 -1
  851. data/src/cxx_supportlib/vendor-modified/boost/container/detail/pair.hpp +83 -18
  852. data/src/cxx_supportlib/vendor-modified/boost/container/detail/pool_common_alloc.hpp +1 -1
  853. data/src/cxx_supportlib/vendor-modified/boost/container/detail/thread_mutex.hpp +6 -6
  854. data/src/cxx_supportlib/vendor-modified/boost/container/detail/tree.hpp +228 -160
  855. data/src/cxx_supportlib/vendor-modified/boost/container/detail/type_traits.hpp +2 -0
  856. data/src/cxx_supportlib/vendor-modified/boost/container/detail/value_functors.hpp +9 -13
  857. data/src/cxx_supportlib/vendor-modified/boost/container/detail/version_type.hpp +3 -12
  858. data/src/cxx_supportlib/vendor-modified/boost/container/detail/workaround.hpp +36 -2
  859. data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +3000 -0
  860. data/src/cxx_supportlib/vendor-modified/boost/container/flat_map.hpp +286 -212
  861. data/src/cxx_supportlib/vendor-modified/boost/container/flat_set.hpp +34 -50
  862. data/src/cxx_supportlib/vendor-modified/boost/container/list.hpp +123 -88
  863. data/src/cxx_supportlib/vendor-modified/boost/container/map.hpp +164 -165
  864. data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +17 -2
  865. data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +2 -2
  866. data/src/cxx_supportlib/vendor-modified/boost/container/options.hpp +319 -2
  867. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/devector.hpp +51 -0
  868. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/flat_set.hpp +3 -3
  869. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/global_resource.hpp +1 -4
  870. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/memory_resource.hpp +29 -0
  871. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/monotonic_buffer_resource.hpp +5 -4
  872. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/polymorphic_allocator.hpp +2 -3
  873. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/resource_adaptor.hpp +90 -6
  874. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/synchronized_pool_resource.hpp +4 -4
  875. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/unsynchronized_pool_resource.hpp +4 -4
  876. data/src/cxx_supportlib/vendor-modified/boost/container/scoped_allocator.hpp +80 -80
  877. data/src/cxx_supportlib/vendor-modified/boost/container/set.hpp +84 -102
  878. data/src/cxx_supportlib/vendor-modified/boost/container/slist.hpp +99 -68
  879. data/src/cxx_supportlib/vendor-modified/boost/container/small_vector.hpp +151 -106
  880. data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +236 -165
  881. data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +160 -105
  882. data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +238 -158
  883. data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +138 -30
  884. data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +559 -575
  885. data/src/cxx_supportlib/vendor-modified/boost/container_hash/extensions.hpp +1 -54
  886. data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash.hpp +5 -4
  887. data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash_fwd.hpp +1 -1
  888. data/src/cxx_supportlib/vendor-modified/boost/core/addressof.hpp +2 -2
  889. data/src/cxx_supportlib/vendor-modified/boost/core/alloc_construct.hpp +169 -0
  890. data/src/cxx_supportlib/vendor-modified/boost/core/allocator_access.hpp +601 -0
  891. data/src/cxx_supportlib/vendor-modified/boost/core/bit.hpp +581 -0
  892. data/src/cxx_supportlib/vendor-modified/boost/core/checked_delete.hpp +6 -4
  893. data/src/cxx_supportlib/vendor-modified/boost/core/cmath.hpp +199 -0
  894. data/src/cxx_supportlib/vendor-modified/boost/core/default_allocator.hpp +148 -0
  895. data/src/cxx_supportlib/vendor-modified/boost/core/detail/splitmix64.hpp +54 -0
  896. data/src/cxx_supportlib/vendor-modified/boost/core/empty_value.hpp +16 -6
  897. data/src/cxx_supportlib/vendor-modified/boost/core/first_scalar.hpp +45 -0
  898. data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test.hpp +199 -50
  899. data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test_trait.hpp +82 -1
  900. data/src/cxx_supportlib/vendor-modified/boost/core/no_exceptions_support.hpp +14 -2
  901. data/src/cxx_supportlib/vendor-modified/boost/core/noinit_adaptor.hpp +87 -0
  902. data/src/cxx_supportlib/vendor-modified/boost/core/nvp.hpp +57 -0
  903. data/src/cxx_supportlib/vendor-modified/boost/core/pointer_traits.hpp +1 -0
  904. data/src/cxx_supportlib/vendor-modified/boost/core/quick_exit.hpp +1 -1
  905. data/src/cxx_supportlib/vendor-modified/boost/core/ref.hpp +37 -1
  906. data/src/cxx_supportlib/vendor-modified/boost/core/swap.hpp +6 -3
  907. data/src/cxx_supportlib/vendor-modified/boost/core/typeinfo.hpp +2 -2
  908. data/src/cxx_supportlib/vendor-modified/boost/core/uncaught_exceptions.hpp +155 -0
  909. data/src/cxx_supportlib/vendor-modified/boost/core/use_default.hpp +17 -0
  910. data/src/cxx_supportlib/vendor-modified/boost/cregex.hpp +4 -0
  911. data/src/cxx_supportlib/vendor-modified/boost/cstdint.hpp +5 -5
  912. data/src/cxx_supportlib/vendor-modified/boost/current_function.hpp +3 -3
  913. data/src/cxx_supportlib/vendor-modified/boost/date_time/c_time.hpp +9 -4
  914. data/src/cxx_supportlib/vendor-modified/boost/date_time/compiler_config.hpp +4 -17
  915. data/src/cxx_supportlib/vendor-modified/boost/date_time/constrained_value.hpp +19 -11
  916. data/src/cxx_supportlib/vendor-modified/boost/date_time/date.hpp +23 -23
  917. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_duration.hpp +17 -22
  918. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_duration_types.hpp +44 -49
  919. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_facet.hpp +5 -6
  920. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_generators.hpp +24 -19
  921. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_iterator.hpp +8 -8
  922. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_parsing.hpp +51 -25
  923. data/src/cxx_supportlib/vendor-modified/boost/date_time/dst_rules.hpp +56 -56
  924. data/src/cxx_supportlib/vendor-modified/boost/date_time/dst_transition_generators.hpp +2 -2
  925. data/src/cxx_supportlib/vendor-modified/boost/date_time/find_match.hpp +42 -0
  926. data/src/cxx_supportlib/vendor-modified/boost/date_time/format_date_parser.hpp +98 -98
  927. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_date.hpp +22 -14
  928. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_day.hpp +4 -4
  929. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_duration.hpp +44 -32
  930. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_duration_types.hpp +2 -2
  931. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_month.hpp +51 -23
  932. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_serialize.hpp +29 -27
  933. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_weekday.hpp +43 -9
  934. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_year.hpp +3 -3
  935. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/parsers.hpp +32 -13
  936. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.hpp +15 -17
  937. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.ipp +27 -22
  938. data/src/cxx_supportlib/vendor-modified/boost/date_time/int_adapter.hpp +57 -37
  939. data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/local_time_io.hpp +3 -0
  940. data/src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp +3 -3
  941. data/src/cxx_supportlib/vendor-modified/boost/date_time/period.hpp +44 -47
  942. data/src/cxx_supportlib/vendor-modified/boost/date_time/period_formatter.hpp +34 -31
  943. data/src/cxx_supportlib/vendor-modified/boost/date_time/period_parser.hpp +27 -28
  944. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/date_duration_operators.hpp +8 -8
  945. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_config.hpp +13 -26
  946. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_duration.hpp +4 -4
  947. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/ptime.hpp +22 -4
  948. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_serialize.hpp +28 -12
  949. data/src/cxx_supportlib/vendor-modified/boost/date_time/special_values_formatter.hpp +1 -0
  950. data/src/cxx_supportlib/vendor-modified/boost/date_time/special_values_parser.hpp +0 -5
  951. data/src/cxx_supportlib/vendor-modified/boost/date_time/string_parse_tree.hpp +5 -3
  952. data/src/cxx_supportlib/vendor-modified/boost/date_time/strings_from_facet.hpp +4 -2
  953. data/src/cxx_supportlib/vendor-modified/boost/date_time/time.hpp +24 -3
  954. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_duration.hpp +56 -44
  955. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_facet.hpp +8 -11
  956. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_iterator.hpp +8 -8
  957. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_parsing.hpp +3 -8
  958. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_resolution_traits.hpp +18 -18
  959. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_system_counted.hpp +65 -50
  960. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_system_split.hpp +43 -30
  961. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_zone_base.hpp +1 -1
  962. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_zone_names.hpp +1 -1
  963. data/src/cxx_supportlib/vendor-modified/boost/date_time/tz_db_base.hpp +0 -1
  964. data/src/cxx_supportlib/vendor-modified/boost/date_time/wrapping_int.hpp +16 -15
  965. data/src/cxx_supportlib/vendor-modified/boost/date_time/year_month_day.hpp +7 -5
  966. data/src/cxx_supportlib/vendor-modified/boost/detail/basic_pointerbuf.hpp +3 -4
  967. data/src/cxx_supportlib/vendor-modified/boost/exception/current_exception_cast.hpp +10 -4
  968. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/clone_current_exception.hpp +10 -4
  969. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/error_info_impl.hpp +12 -7
  970. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/exception_ptr.hpp +106 -33
  971. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/is_output_streamable.hpp +9 -4
  972. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/object_hex_dump.hpp +9 -4
  973. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/shared_ptr.hpp +2 -2
  974. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/type_info.hpp +11 -5
  975. data/src/cxx_supportlib/vendor-modified/boost/exception/diagnostic_information.hpp +15 -6
  976. data/src/cxx_supportlib/vendor-modified/boost/exception/exception.hpp +19 -57
  977. data/src/cxx_supportlib/vendor-modified/boost/exception/get_error_info.hpp +9 -4
  978. data/src/cxx_supportlib/vendor-modified/boost/exception/info.hpp +11 -9
  979. data/src/cxx_supportlib/vendor-modified/boost/exception/to_string.hpp +9 -4
  980. data/src/cxx_supportlib/vendor-modified/boost/exception/to_string_stub.hpp +9 -4
  981. data/src/cxx_supportlib/vendor-modified/boost/exception_ptr.hpp +2 -2
  982. data/src/cxx_supportlib/vendor-modified/boost/foreach.hpp +16 -9
  983. data/src/cxx_supportlib/vendor-modified/boost/function/function_base.hpp +4 -12
  984. data/src/cxx_supportlib/vendor-modified/boost/function/function_template.hpp +22 -4
  985. data/src/cxx_supportlib/vendor-modified/boost/integer.hpp +4 -4
  986. data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor.hpp +2 -2
  987. data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor_ct.hpp +3 -3
  988. data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor_rt.hpp +31 -29
  989. data/src/cxx_supportlib/vendor-modified/boost/integer/extended_euclidean.hpp +83 -0
  990. data/src/cxx_supportlib/vendor-modified/boost/integer/integer_log2.hpp +7 -7
  991. data/src/cxx_supportlib/vendor-modified/boost/integer/integer_mask.hpp +2 -2
  992. data/src/cxx_supportlib/vendor-modified/boost/integer/mod_inverse.hpp +53 -0
  993. data/src/cxx_supportlib/vendor-modified/boost/integer/static_log2.hpp +4 -5
  994. data/src/cxx_supportlib/vendor-modified/boost/integer/static_min_max.hpp +3 -2
  995. data/src/cxx_supportlib/vendor-modified/boost/integer_fwd.hpp +2 -2
  996. data/src/cxx_supportlib/vendor-modified/boost/integer_traits.hpp +3 -3
  997. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +22 -22
  998. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +11 -11
  999. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +22 -22
  1000. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +19 -27
  1001. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +6 -7
  1002. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/array_initializer.hpp +2 -1
  1003. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +1 -2
  1004. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/ebo_functor_holder.hpp +3 -3
  1005. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/generic_hook.hpp +12 -12
  1006. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_combine.hpp +94 -0
  1007. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +18 -9
  1008. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hook_traits.hpp +12 -4
  1009. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iterator.hpp +10 -10
  1010. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/key_nodeptr_comp.hpp +1 -1
  1011. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_iterator.hpp +15 -3
  1012. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/math.hpp +9 -14
  1013. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/mpl.hpp +1 -0
  1014. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/simple_disposers.hpp +2 -0
  1015. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_iterator.hpp +13 -1
  1016. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_iterator.hpp +23 -11
  1017. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/twin.hpp +49 -0
  1018. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/value_functors.hpp +42 -0
  1019. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +6 -1
  1020. data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +14 -18
  1021. data/src/cxx_supportlib/vendor-modified/boost/intrusive/intrusive_fwd.hpp +3 -0
  1022. data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +11 -5
  1023. data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +20 -20
  1024. data/src/cxx_supportlib/vendor-modified/boost/intrusive/options.hpp +9 -1
  1025. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pack_options.hpp +6 -0
  1026. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +14 -14
  1027. data/src/cxx_supportlib/vendor-modified/boost/intrusive/priority_compare.hpp +2 -2
  1028. data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +11 -11
  1029. data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +1 -1
  1030. data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +22 -22
  1031. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +22 -22
  1032. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +18 -26
  1033. data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +29 -33
  1034. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +22 -22
  1035. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +11 -11
  1036. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +93 -66
  1037. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +19 -18
  1038. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +67 -60
  1039. data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +9 -9
  1040. data/src/cxx_supportlib/vendor-modified/boost/io/ios_state.hpp +361 -315
  1041. data/src/cxx_supportlib/vendor-modified/boost/io_fwd.hpp +45 -49
  1042. data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/config_def.hpp +4 -4
  1043. data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/facade_iterator_category.hpp +3 -2
  1044. data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_adaptor.hpp +3 -3
  1045. data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_facade.hpp +1 -1
  1046. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast.hpp +2 -2
  1047. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/bad_lexical_cast.hpp +24 -19
  1048. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical.hpp +43 -43
  1049. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +39 -39
  1050. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +1 -1
  1051. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/inf_nan.hpp +13 -16
  1052. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/is_character.hpp +5 -5
  1053. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_char_constants.hpp +2 -2
  1054. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_unsigned_converters.hpp +10 -10
  1055. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/widest_char.hpp +1 -1
  1056. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/try_lexical_convert.hpp +5 -5
  1057. data/src/cxx_supportlib/vendor-modified/boost/libs/random/src/random_device.cpp +1 -1
  1058. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/posix_api.cpp +10 -7
  1059. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex.cpp +13 -122
  1060. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/static_mutex.cpp +8 -2
  1061. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/wide_posix_api.cpp +11 -8
  1062. data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/once.cpp +0 -1
  1063. data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/once_atomic.cpp +4 -3
  1064. data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/thread.cpp +12 -7
  1065. data/src/cxx_supportlib/vendor-modified/boost/memory_order.hpp +6 -12
  1066. data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_merge.hpp +36 -29
  1067. data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_sort.hpp +21 -14
  1068. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/adaptive_sort_merge.hpp +133 -331
  1069. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge.hpp +434 -51
  1070. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge_sort.hpp +68 -0
  1071. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/set_difference.hpp +1 -1
  1072. data/src/cxx_supportlib/vendor-modified/boost/move/algo/predicate.hpp +15 -0
  1073. data/src/cxx_supportlib/vendor-modified/boost/move/default_delete.hpp +30 -3
  1074. data/src/cxx_supportlib/vendor-modified/boost/move/detail/fwd_macros.hpp +12 -0
  1075. data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_to_raw_pointer.hpp +3 -3
  1076. data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils_core.hpp +11 -6
  1077. data/src/cxx_supportlib/vendor-modified/boost/move/detail/nsec_clock.hpp +224 -0
  1078. data/src/cxx_supportlib/vendor-modified/boost/move/detail/type_traits.hpp +255 -44
  1079. data/src/cxx_supportlib/vendor-modified/boost/move/detail/unique_ptr_meta_utils.hpp +1 -27
  1080. data/src/cxx_supportlib/vendor-modified/boost/move/iterator.hpp +1 -1
  1081. data/src/cxx_supportlib/vendor-modified/boost/move/unique_ptr.hpp +5 -5
  1082. data/src/cxx_supportlib/vendor-modified/boost/mpl/assert.hpp +3 -3
  1083. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/common_name_wknd.hpp +2 -2
  1084. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/adl.hpp +1 -1
  1085. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/arrays.hpp +1 -1
  1086. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/bcc.hpp +2 -2
  1087. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/bind.hpp +1 -1
  1088. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/compiler.hpp +2 -2
  1089. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/ctps.hpp +1 -1
  1090. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/dtp.hpp +3 -3
  1091. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/forwarding.hpp +1 -1
  1092. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/integral.hpp +1 -1
  1093. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/operators.hpp +1 -1
  1094. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/overload_resolution.hpp +1 -1
  1095. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/preprocessor.hpp +1 -1
  1096. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/ttp.hpp +2 -2
  1097. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/count_impl.hpp +1 -1
  1098. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/fold_impl_body.hpp +3 -3
  1099. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/has_rebind.hpp +4 -4
  1100. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/integral_wrapper.hpp +1 -1
  1101. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/lambda_support.hpp +3 -3
  1102. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/nested_type_wknd.hpp +1 -1
  1103. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/enum.hpp +12 -0
  1104. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/params.hpp +12 -0
  1105. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/size_impl.hpp +1 -1
  1106. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/static_cast.hpp +1 -1
  1107. data/src/cxx_supportlib/vendor-modified/boost/mpl/has_xxx.hpp +4 -4
  1108. data/src/cxx_supportlib/vendor-modified/boost/mpl/if.hpp +1 -1
  1109. data/src/cxx_supportlib/vendor-modified/boost/mpl/integral_c.hpp +1 -1
  1110. data/src/cxx_supportlib/vendor-modified/boost/mpl/lower_bound.hpp +1 -1
  1111. data/src/cxx_supportlib/vendor-modified/boost/mpl/numeric_cast.hpp +1 -1
  1112. data/src/cxx_supportlib/vendor-modified/boost/mpl/string.hpp +6 -6
  1113. data/src/cxx_supportlib/vendor-modified/boost/mpl/upper_bound.hpp +1 -1
  1114. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/at.hpp +1 -1
  1115. data/src/cxx_supportlib/vendor-modified/boost/none.hpp +5 -5
  1116. data/src/cxx_supportlib/vendor-modified/boost/none_t.hpp +3 -1
  1117. data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/cast.hpp +1 -1
  1118. data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/converter_policies.hpp +5 -5
  1119. data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/converter.hpp +1 -1
  1120. data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/meta.hpp +1 -1
  1121. data/src/cxx_supportlib/vendor-modified/boost/operators.hpp +31 -24
  1122. data/src/cxx_supportlib/vendor-modified/boost/optional/bad_optional_access.hpp +9 -0
  1123. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/old_optional_implementation.hpp +2 -2
  1124. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_config.hpp +1 -1
  1125. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_reference_spec.hpp +8 -1
  1126. data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_trivially_copyable_base.hpp +1 -1
  1127. data/src/cxx_supportlib/vendor-modified/boost/optional/optional.hpp +9 -4
  1128. data/src/cxx_supportlib/vendor-modified/boost/parameter/are_tagged_arguments.hpp +125 -0
  1129. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/always_true_predicate.hpp +42 -0
  1130. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/arg_list.hpp +1253 -359
  1131. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/as_lvalue.hpp +25 -0
  1132. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/augment_predicate.hpp +198 -0
  1133. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/cast.hpp +7 -136
  1134. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/default.hpp +101 -59
  1135. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/has_nested_template_fn.hpp +111 -0
  1136. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/is_maybe.hpp +42 -16
  1137. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/is_placeholder.hpp +64 -0
  1138. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/is_tagged_argument.hpp +95 -0
  1139. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/lambda_tag.hpp +16 -0
  1140. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/maybe.hpp +128 -97
  1141. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/name.hpp +93 -0
  1142. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/as_parameter_requirements.hpp +32 -0
  1143. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/deduce_tag.hpp +217 -0
  1144. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/deduced_item.hpp +34 -0
  1145. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/insert_tagged.hpp +23 -0
  1146. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/is_named_argument.hpp +43 -0
  1147. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/item.hpp +47 -0
  1148. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/make_arg_list.hpp +438 -0
  1149. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/make_deduced_items.hpp +53 -0
  1150. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/make_items.hpp +45 -0
  1151. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/make_parameter_spec_items.hpp +244 -0
  1152. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/parameter_requirements.hpp +25 -0
  1153. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/predicate.hpp +87 -0
  1154. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/satisfies.hpp +142 -0
  1155. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_deduced.hpp +59 -0
  1156. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_keyword_arg.hpp +30 -0
  1157. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_keyword_arg_ref.hpp +67 -0
  1158. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_template_keyword_arg.hpp +30 -0
  1159. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_type.hpp +89 -0
  1160. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/unmatched_argument.hpp +41 -0
  1161. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/parameter_requirements.hpp +7 -20
  1162. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/parenthesized_type.hpp +8 -31
  1163. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pp_impl/argument_pack.hpp +91 -0
  1164. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pp_impl/match.hpp +55 -0
  1165. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pp_impl/unwrap_predicate.hpp +97 -0
  1166. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/binary_seq_for_each.hpp +1638 -0
  1167. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/binary_seq_for_each_inc.hpp +1796 -0
  1168. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/binary_seq_to_args.hpp +65 -0
  1169. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/convert_binary_seq.hpp +57 -0
  1170. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/flatten.hpp +7 -110
  1171. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/for_each.hpp +7 -98
  1172. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/for_each_pred.hpp +1029 -0
  1173. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/argument_specs.hpp +24 -0
  1174. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/arity_range.hpp +42 -0
  1175. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/flatten.hpp +143 -0
  1176. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/for_each.hpp +152 -0
  1177. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/forwarding_overloads.hpp +509 -0
  1178. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_cast.hpp +730 -0
  1179. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_dispatch_layer.hpp +474 -0
  1180. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_dispatch_tuple.hpp +33 -0
  1181. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_forward_match.hpp +43 -0
  1182. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_name.hpp +152 -0
  1183. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/no_spec_overloads.hpp +331 -0
  1184. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/parenthesized_return_type.hpp +122 -0
  1185. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/parenthesized_type.hpp +34 -0
  1186. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/specification.hpp +109 -0
  1187. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/split_args.hpp +71 -0
  1188. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/inc_binary_seq.hpp +78 -0
  1189. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/is_binary.hpp +31 -0
  1190. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/is_nullary.hpp +32 -0
  1191. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/no_perfect_forwarding_begin.hpp +165 -0
  1192. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/no_perfect_forwarding_end.hpp +24 -0
  1193. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/nullptr.hpp +18 -0
  1194. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/overloads.hpp +92 -0
  1195. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/qualifier.hpp +88 -0
  1196. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/seq_enum.hpp +26 -0
  1197. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/seq_merge.hpp +1807 -0
  1198. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/result_of0.hpp +46 -29
  1199. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/set.hpp +94 -42
  1200. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/tag.hpp +152 -30
  1201. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/tagged_argument.hpp +874 -159
  1202. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/tagged_argument_fwd.hpp +38 -0
  1203. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/template_keyword.hpp +76 -34
  1204. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/unwrap_cv_reference.hpp +161 -78
  1205. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/use_default.hpp +17 -0
  1206. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/use_default_tag.hpp +29 -0
  1207. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/void.hpp +25 -16
  1208. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/yesno.hpp +30 -14
  1209. data/src/cxx_supportlib/vendor-modified/boost/parameter/binding.hpp +154 -70
  1210. data/src/cxx_supportlib/vendor-modified/boost/parameter/compose.hpp +210 -0
  1211. data/src/cxx_supportlib/vendor-modified/boost/parameter/config.hpp +75 -6
  1212. data/src/cxx_supportlib/vendor-modified/boost/parameter/deduced.hpp +132 -0
  1213. data/src/cxx_supportlib/vendor-modified/boost/parameter/is_argument_pack.hpp +29 -0
  1214. data/src/cxx_supportlib/vendor-modified/boost/parameter/keyword.hpp +724 -102
  1215. data/src/cxx_supportlib/vendor-modified/boost/parameter/keyword_fwd.hpp +23 -0
  1216. data/src/cxx_supportlib/vendor-modified/boost/parameter/macros.hpp +205 -72
  1217. data/src/cxx_supportlib/vendor-modified/boost/parameter/match.hpp +37 -44
  1218. data/src/cxx_supportlib/vendor-modified/boost/parameter/name.hpp +100 -126
  1219. data/src/cxx_supportlib/vendor-modified/boost/parameter/nested_keyword.hpp +111 -0
  1220. data/src/cxx_supportlib/vendor-modified/boost/parameter/optional.hpp +67 -0
  1221. data/src/cxx_supportlib/vendor-modified/boost/parameter/parameters.hpp +556 -887
  1222. data/src/cxx_supportlib/vendor-modified/boost/parameter/preprocessor.hpp +156 -1016
  1223. data/src/cxx_supportlib/vendor-modified/boost/parameter/preprocessor_no_spec.hpp +74 -0
  1224. data/src/cxx_supportlib/vendor-modified/boost/parameter/required.hpp +66 -0
  1225. data/src/cxx_supportlib/vendor-modified/boost/parameter/template_keyword.hpp +87 -0
  1226. data/src/cxx_supportlib/vendor-modified/boost/parameter/value_type.hpp +152 -70
  1227. data/src/cxx_supportlib/vendor-modified/boost/pool/object_pool.hpp +2 -2
  1228. data/src/cxx_supportlib/vendor-modified/boost/pool/pool_alloc.hpp +1 -1
  1229. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture.h +2 -1
  1230. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/alpha.h +19 -13
  1231. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/arm.h +96 -32
  1232. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/blackfin.h +16 -10
  1233. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/convex.h +19 -13
  1234. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/e2k.h +54 -0
  1235. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/ia64.h +19 -13
  1236. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/m68k.h +33 -27
  1237. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/mips.h +31 -20
  1238. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/parisc.h +24 -18
  1239. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/ppc.h +82 -30
  1240. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/ptx.h +15 -9
  1241. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/pyramid.h +13 -7
  1242. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/riscv.h +48 -0
  1243. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/rs6k.h +23 -12
  1244. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sparc.h +26 -13
  1245. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/superh.h +29 -15
  1246. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sys370.h +15 -9
  1247. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sys390.h +15 -9
  1248. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/x86.h +4 -4
  1249. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/x86/32.h +31 -25
  1250. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/x86/64.h +19 -13
  1251. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/z.h +14 -8
  1252. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/borland.h +12 -11
  1253. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/clang.h +10 -9
  1254. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/comeau.h +10 -9
  1255. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/compaq.h +12 -11
  1256. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/diab.h +10 -9
  1257. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/digitalmars.h +10 -9
  1258. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/dignus.h +10 -9
  1259. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/edg.h +10 -9
  1260. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/ekopath.h +10 -9
  1261. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/gcc.h +11 -10
  1262. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/gcc_xml.h +9 -8
  1263. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/greenhills.h +12 -11
  1264. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/hp_acc.h +10 -9
  1265. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/iar.h +10 -9
  1266. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/ibm.h +15 -14
  1267. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/intel.h +18 -17
  1268. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/kai.h +10 -9
  1269. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/llvm.h +9 -8
  1270. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/metaware.h +9 -8
  1271. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/metrowerks.h +14 -13
  1272. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/microtec.h +9 -8
  1273. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/mpw.h +12 -11
  1274. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/nvcc.h +10 -9
  1275. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/palm.h +10 -9
  1276. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/pgi.h +10 -9
  1277. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/sgi_mipspro.h +12 -11
  1278. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/sunpro.h +14 -13
  1279. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/tendra.h +9 -8
  1280. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/visualc.h +13 -12
  1281. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/watcom.h +10 -9
  1282. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd.h +95 -46
  1283. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/arm.h +21 -19
  1284. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/arm/versions.h +16 -10
  1285. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/ppc.h +21 -19
  1286. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/ppc/versions.h +27 -21
  1287. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86.h +39 -37
  1288. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86/versions.h +73 -67
  1289. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86_amd.h +25 -23
  1290. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86_amd/versions.h +24 -19
  1291. data/src/cxx_supportlib/vendor-modified/boost/predef/language/cuda.h +11 -10
  1292. data/src/cxx_supportlib/vendor-modified/boost/predef/language/objc.h +9 -8
  1293. data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdc.h +10 -9
  1294. data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdcpp.h +39 -32
  1295. data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/cloudabi.h +10 -9
  1296. data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/gnu.h +12 -11
  1297. data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/uc.h +10 -9
  1298. data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/vms.h +9 -8
  1299. data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/zos.h +10 -9
  1300. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/cxx.h +11 -10
  1301. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/dinkumware.h +11 -10
  1302. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/libcomo.h +10 -9
  1303. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/modena.h +10 -9
  1304. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/msl.h +12 -11
  1305. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/roguewave.h +11 -10
  1306. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/sgi.h +10 -9
  1307. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/stdcpp3.h +12 -11
  1308. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/stlport.h +13 -12
  1309. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/vacpp.h +9 -8
  1310. data/src/cxx_supportlib/vendor-modified/boost/predef/make.h +101 -35
  1311. data/src/cxx_supportlib/vendor-modified/boost/predef/os.h +0 -1
  1312. data/src/cxx_supportlib/vendor-modified/boost/predef/os/aix.h +14 -13
  1313. data/src/cxx_supportlib/vendor-modified/boost/predef/os/amigaos.h +10 -9
  1314. data/src/cxx_supportlib/vendor-modified/boost/predef/os/beos.h +9 -8
  1315. data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd.h +22 -23
  1316. data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/bsdi.h +10 -8
  1317. data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/dragonfly.h +10 -8
  1318. data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/free.h +11 -9
  1319. data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/net.h +17 -15
  1320. data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/open.h +60 -58
  1321. data/src/cxx_supportlib/vendor-modified/boost/predef/os/cygwin.h +10 -9
  1322. data/src/cxx_supportlib/vendor-modified/boost/predef/os/haiku.h +9 -8
  1323. data/src/cxx_supportlib/vendor-modified/boost/predef/os/hpux.h +11 -10
  1324. data/src/cxx_supportlib/vendor-modified/boost/predef/os/ios.h +12 -11
  1325. data/src/cxx_supportlib/vendor-modified/boost/predef/os/irix.h +10 -9
  1326. data/src/cxx_supportlib/vendor-modified/boost/predef/os/linux.h +14 -10
  1327. data/src/cxx_supportlib/vendor-modified/boost/predef/os/macos.h +14 -13
  1328. data/src/cxx_supportlib/vendor-modified/boost/predef/os/os400.h +9 -8
  1329. data/src/cxx_supportlib/vendor-modified/boost/predef/os/qnxnto.h +12 -11
  1330. data/src/cxx_supportlib/vendor-modified/boost/predef/os/solaris.h +10 -9
  1331. data/src/cxx_supportlib/vendor-modified/boost/predef/os/unix.h +24 -22
  1332. data/src/cxx_supportlib/vendor-modified/boost/predef/os/vms.h +11 -10
  1333. data/src/cxx_supportlib/vendor-modified/boost/predef/os/windows.h +16 -15
  1334. data/src/cxx_supportlib/vendor-modified/boost/predef/other.h +3 -2
  1335. data/src/cxx_supportlib/vendor-modified/boost/predef/other/endian.h +17 -19
  1336. data/src/cxx_supportlib/vendor-modified/boost/predef/other/wordsize.h +73 -0
  1337. data/src/cxx_supportlib/vendor-modified/boost/predef/other/workaround.h +22 -14
  1338. data/src/cxx_supportlib/vendor-modified/boost/predef/platform.h +1 -1
  1339. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/android.h +44 -0
  1340. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/cloudabi.h +9 -8
  1341. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/ios.h +14 -9
  1342. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/mingw.h +12 -11
  1343. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/mingw32.h +10 -9
  1344. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/mingw64.h +10 -9
  1345. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_desktop.h +10 -9
  1346. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_phone.h +9 -8
  1347. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_runtime.h +10 -9
  1348. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_server.h +9 -8
  1349. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_store.h +10 -9
  1350. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_system.h +9 -8
  1351. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_uwp.h +12 -11
  1352. data/src/cxx_supportlib/vendor-modified/boost/predef/version.h +1 -1
  1353. data/src/cxx_supportlib/vendor-modified/boost/predef/version_number.h +16 -14
  1354. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/add.hpp +54 -1
  1355. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/dec.hpp +33 -0
  1356. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/detail/is_1_number.hpp +21 -0
  1357. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/detail/is_maximum_number.hpp +22 -0
  1358. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/detail/is_minimum_number.hpp +21 -0
  1359. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/detail/maximum_number.hpp +19 -0
  1360. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/div.hpp +37 -1
  1361. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/inc.hpp +33 -0
  1362. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/dec_1024.hpp +531 -0
  1363. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/dec_256.hpp +276 -0
  1364. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/dec_512.hpp +275 -0
  1365. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/inc_1024.hpp +536 -0
  1366. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/inc_256.hpp +275 -0
  1367. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/inc_512.hpp +280 -0
  1368. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/mod.hpp +37 -1
  1369. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/mul.hpp +60 -1
  1370. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/sub.hpp +51 -1
  1371. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/detail/get_data.hpp +21 -21
  1372. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/enum.hpp +17 -1
  1373. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/insert.hpp +71 -0
  1374. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/remove.hpp +66 -0
  1375. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/replace.hpp +58 -0
  1376. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_list.hpp +7 -7
  1377. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_seq.hpp +7 -7
  1378. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_tuple.hpp +7 -7
  1379. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/comparison/limits/not_equal_1024.hpp +1044 -0
  1380. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/comparison/limits/not_equal_256.hpp +793 -0
  1381. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/comparison/limits/not_equal_512.hpp +532 -0
  1382. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/comparison/not_equal.hpp +44 -1
  1383. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/config/config.hpp +16 -33
  1384. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/config/limits.hpp +136 -3
  1385. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/deduce_d.hpp +27 -0
  1386. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/dmc/while.hpp +2 -3
  1387. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/edg/limits/while_1024.hpp +1044 -0
  1388. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/edg/limits/while_256.hpp +533 -0
  1389. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/edg/limits/while_512.hpp +532 -0
  1390. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/edg/while.hpp +27 -0
  1391. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/limits/while_1024.hpp +1044 -0
  1392. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/limits/while_256.hpp +533 -0
  1393. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/limits/while_512.hpp +532 -0
  1394. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/while.hpp +27 -0
  1395. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/limits/while_1024.hpp +531 -0
  1396. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/limits/while_256.hpp +275 -0
  1397. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/limits/while_512.hpp +275 -0
  1398. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/while.hpp +75 -0
  1399. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/auto_rec.hpp +41 -0
  1400. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/dmc/auto_rec.hpp +2 -2
  1401. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/limits/auto_rec_1024.hpp +532 -0
  1402. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/limits/auto_rec_256.hpp +280 -0
  1403. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/limits/auto_rec_512.hpp +276 -0
  1404. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities.hpp +2 -0
  1405. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/check_empty.hpp +19 -0
  1406. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/detail/is_empty.hpp +3 -3
  1407. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/intercept.hpp +29 -0
  1408. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/is_empty.hpp +0 -37
  1409. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/is_empty_variadic.hpp +28 -5
  1410. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/limits/intercept_1024.hpp +530 -0
  1411. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/limits/intercept_256.hpp +273 -0
  1412. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/limits/intercept_512.hpp +274 -0
  1413. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/overload.hpp +1 -3
  1414. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/va_opt.hpp +34 -0
  1415. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward1.hpp +27 -0
  1416. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward2.hpp +27 -0
  1417. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward3.hpp +27 -0
  1418. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward4.hpp +27 -0
  1419. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward5.hpp +27 -0
  1420. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward1_1024.hpp +2573 -0
  1421. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward1_256.hpp +1296 -0
  1422. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward1_512.hpp +1293 -0
  1423. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward2_1024.hpp +2573 -0
  1424. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward2_256.hpp +1296 -0
  1425. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward2_512.hpp +1293 -0
  1426. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward3_1024.hpp +2573 -0
  1427. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward3_256.hpp +1296 -0
  1428. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward3_512.hpp +1293 -0
  1429. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward4_1024.hpp +2573 -0
  1430. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward4_256.hpp +1296 -0
  1431. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward4_512.hpp +1293 -0
  1432. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward5_1024.hpp +2573 -0
  1433. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward5_256.hpp +1296 -0
  1434. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward5_512.hpp +1293 -0
  1435. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse1_1024.hpp +2571 -0
  1436. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse1_256.hpp +1296 -0
  1437. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse1_512.hpp +1291 -0
  1438. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse2_1024.hpp +2571 -0
  1439. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse2_256.hpp +1296 -0
  1440. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse2_512.hpp +1293 -0
  1441. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse3_1024.hpp +2571 -0
  1442. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse3_256.hpp +1296 -0
  1443. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse3_512.hpp +1293 -0
  1444. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse4_1024.hpp +2571 -0
  1445. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse4_256.hpp +1296 -0
  1446. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse4_512.hpp +1293 -0
  1447. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse5_1024.hpp +2571 -0
  1448. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse5_256.hpp +1296 -0
  1449. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse5_512.hpp +1293 -0
  1450. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse1.hpp +25 -0
  1451. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse2.hpp +25 -0
  1452. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse3.hpp +25 -0
  1453. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse4.hpp +25 -0
  1454. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse5.hpp +25 -0
  1455. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/local_1024.hpp +1549 -0
  1456. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/local_256.hpp +782 -0
  1457. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/local_512.hpp +781 -0
  1458. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/rlocal_1024.hpp +1549 -0
  1459. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/rlocal_256.hpp +782 -0
  1460. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/rlocal_512.hpp +781 -0
  1461. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/local.hpp +27 -0
  1462. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/rlocal.hpp +25 -0
  1463. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/dmc/fold_left.hpp +3 -2
  1464. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/fold_left.hpp +28 -0
  1465. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/fold_right.hpp +29 -0
  1466. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_left_1024.hpp +1044 -0
  1467. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_left_256.hpp +533 -0
  1468. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_left_512.hpp +532 -0
  1469. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_right_1024.hpp +1557 -0
  1470. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_right_256.hpp +791 -0
  1471. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_right_512.hpp +789 -0
  1472. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/fold_left.hpp +28 -0
  1473. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/fold_right.hpp +26 -0
  1474. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_left_1024.hpp +532 -0
  1475. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_left_256.hpp +275 -0
  1476. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_left_512.hpp +276 -0
  1477. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_right_1024.hpp +532 -0
  1478. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_right_256.hpp +275 -0
  1479. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_right_512.hpp +276 -0
  1480. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/enum.hpp +13 -1
  1481. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/fold_left.hpp +60 -0
  1482. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/fold_right.hpp +44 -0
  1483. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/for_each_product.hpp +25 -6
  1484. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/limits/fold_left_1024.hpp +531 -0
  1485. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/limits/fold_left_256.hpp +275 -0
  1486. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/limits/fold_left_512.hpp +275 -0
  1487. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/reverse.hpp +35 -0
  1488. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/size.hpp +56 -1
  1489. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/to_array.hpp +21 -88
  1490. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/to_tuple.hpp +14 -14
  1491. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/logical/bool.hpp +22 -0
  1492. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/logical/limits/bool_1024.hpp +531 -0
  1493. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/logical/limits/bool_256.hpp +275 -0
  1494. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/logical/limits/bool_512.hpp +275 -0
  1495. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/punctuation/is_begin_parens.hpp +1 -5
  1496. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/punctuation/remove_parens.hpp +0 -4
  1497. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/deduce_r.hpp +27 -0
  1498. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/dmc/for.hpp +3 -2
  1499. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/edg/for.hpp +26 -0
  1500. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/edg/limits/for_1024.hpp +1044 -0
  1501. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/edg/limits/for_256.hpp +533 -0
  1502. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/edg/limits/for_512.hpp +532 -0
  1503. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/for.hpp +28 -0
  1504. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/limits/for_1024.hpp +1044 -0
  1505. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/limits/for_256.hpp +533 -0
  1506. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/limits/for_512.hpp +532 -0
  1507. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/msvc/for.hpp +1 -0
  1508. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/for.hpp +121 -7
  1509. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/for_1024.hpp +531 -0
  1510. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/for_256.hpp +275 -0
  1511. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/for_512.hpp +275 -0
  1512. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/repeat_1024.hpp +1557 -0
  1513. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/repeat_256.hpp +791 -0
  1514. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/repeat_512.hpp +789 -0
  1515. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/repeat.hpp +22 -0
  1516. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/repeat_from_to.hpp +27 -0
  1517. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/binary_transform.hpp +6 -11
  1518. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/is_empty.hpp +11 -11
  1519. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/limits/split_1024.hpp +530 -0
  1520. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/limits/split_256.hpp +272 -0
  1521. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/limits/split_512.hpp +274 -0
  1522. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/split.hpp +23 -0
  1523. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/elem.hpp +23 -0
  1524. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/enum.hpp +23 -0
  1525. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/fold_left.hpp +52 -0
  1526. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/fold_right.hpp +37 -0
  1527. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/for_each.hpp +27 -27
  1528. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/for_each_i.hpp +28 -28
  1529. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/elem_1024.hpp +530 -0
  1530. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/elem_256.hpp +272 -0
  1531. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/elem_512.hpp +274 -0
  1532. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/enum_1024.hpp +530 -0
  1533. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/enum_256.hpp +272 -0
  1534. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/enum_512.hpp +274 -0
  1535. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_left_1024.hpp +1556 -0
  1536. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_left_256.hpp +1053 -0
  1537. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_left_512.hpp +788 -0
  1538. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_right_1024.hpp +530 -0
  1539. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_right_256.hpp +273 -0
  1540. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_right_512.hpp +274 -0
  1541. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/size_1024.hpp +1043 -0
  1542. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/size_256.hpp +532 -0
  1543. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/size_512.hpp +531 -0
  1544. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/replace.hpp +7 -7
  1545. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/rest_n.hpp +16 -10
  1546. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/size.hpp +23 -0
  1547. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/variadic_seq_to_seq.hpp +0 -2
  1548. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/stringize.hpp +0 -4
  1549. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/detail/is_single_return.hpp +5 -5
  1550. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/eat.hpp +4 -18
  1551. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/elem.hpp +11 -157
  1552. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/insert.hpp +2 -7
  1553. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/reverse_128.hpp +403 -0
  1554. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/reverse_256.hpp +1171 -0
  1555. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/reverse_64.hpp +83 -0
  1556. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_list_128.hpp +595 -0
  1557. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_list_256.hpp +1747 -0
  1558. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_list_64.hpp +83 -0
  1559. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_seq_128.hpp +403 -0
  1560. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_seq_256.hpp +1171 -0
  1561. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_seq_64.hpp +84 -0
  1562. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/pop_back.hpp +16 -21
  1563. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/pop_front.hpp +16 -21
  1564. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/push_back.hpp +1 -6
  1565. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/push_front.hpp +1 -7
  1566. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/rem.hpp +21 -43
  1567. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/remove.hpp +16 -21
  1568. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/replace.hpp +2 -7
  1569. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/reverse.hpp +38 -25
  1570. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/size.hpp +13 -6
  1571. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/to_array.hpp +15 -12
  1572. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/to_list.hpp +37 -25
  1573. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/to_seq.hpp +38 -24
  1574. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic.hpp +1 -0
  1575. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/detail/has_opt.hpp +39 -0
  1576. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/detail/is_single_return.hpp +5 -5
  1577. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/elem.hpp +93 -71
  1578. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/has_opt.hpp +28 -0
  1579. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/elem_128.hpp +275 -0
  1580. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/elem_256.hpp +723 -0
  1581. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/elem_64.hpp +81 -0
  1582. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/size_128.hpp +47 -0
  1583. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/size_256.hpp +53 -0
  1584. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/size_64.hpp +23 -0
  1585. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/size.hpp +39 -4
  1586. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/to_array.hpp +15 -9
  1587. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/to_list.hpp +9 -2
  1588. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/to_seq.hpp +1 -3
  1589. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/to_tuple.hpp +1 -3
  1590. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/wstringize.hpp +0 -4
  1591. data/src/cxx_supportlib/vendor-modified/boost/random.hpp +1 -0
  1592. data/src/cxx_supportlib/vendor-modified/boost/random/additive_combine.hpp +2 -2
  1593. data/src/cxx_supportlib/vendor-modified/boost/random/detail/gray_coded_qrng.hpp +29 -5
  1594. data/src/cxx_supportlib/vendor-modified/boost/random/detail/int_float_pair.hpp +3 -4
  1595. data/src/cxx_supportlib/vendor-modified/boost/random/detail/integer_log2.hpp +1 -1
  1596. data/src/cxx_supportlib/vendor-modified/boost/random/detail/mixmax_skip_N17.ipp +287 -0
  1597. data/src/cxx_supportlib/vendor-modified/boost/random/detail/niederreiter_base2_table.hpp +1 -0
  1598. data/src/cxx_supportlib/vendor-modified/boost/random/detail/operators.hpp +1 -1
  1599. data/src/cxx_supportlib/vendor-modified/boost/random/detail/qrng_base.hpp +5 -5
  1600. data/src/cxx_supportlib/vendor-modified/boost/random/detail/seed.hpp +9 -11
  1601. data/src/cxx_supportlib/vendor-modified/boost/random/detail/seed_impl.hpp +13 -14
  1602. data/src/cxx_supportlib/vendor-modified/boost/random/detail/sobol_table.hpp +1 -0
  1603. data/src/cxx_supportlib/vendor-modified/boost/random/discard_block.hpp +2 -2
  1604. data/src/cxx_supportlib/vendor-modified/boost/random/discrete_distribution.hpp +4 -0
  1605. data/src/cxx_supportlib/vendor-modified/boost/random/generate_canonical.hpp +2 -3
  1606. data/src/cxx_supportlib/vendor-modified/boost/random/hyperexponential_distribution.hpp +3 -3
  1607. data/src/cxx_supportlib/vendor-modified/boost/random/independent_bits.hpp +3 -3
  1608. data/src/cxx_supportlib/vendor-modified/boost/random/inversive_congruential.hpp +2 -3
  1609. data/src/cxx_supportlib/vendor-modified/boost/random/lagged_fibonacci.hpp +4 -4
  1610. data/src/cxx_supportlib/vendor-modified/boost/random/linear_congruential.hpp +5 -7
  1611. data/src/cxx_supportlib/vendor-modified/boost/random/linear_feedback_shift.hpp +3 -3
  1612. data/src/cxx_supportlib/vendor-modified/boost/random/mersenne_twister.hpp +2 -2
  1613. data/src/cxx_supportlib/vendor-modified/boost/random/mixmax.hpp +313 -0
  1614. data/src/cxx_supportlib/vendor-modified/boost/random/niederreiter_base2.hpp +2 -2
  1615. data/src/cxx_supportlib/vendor-modified/boost/random/random_device.hpp +2 -2
  1616. data/src/cxx_supportlib/vendor-modified/boost/random/shuffle_order.hpp +2 -2
  1617. data/src/cxx_supportlib/vendor-modified/boost/random/sobol.hpp +3 -2
  1618. data/src/cxx_supportlib/vendor-modified/boost/random/subtract_with_carry.hpp +4 -4
  1619. data/src/cxx_supportlib/vendor-modified/boost/random/traits.hpp +3 -3
  1620. data/src/cxx_supportlib/vendor-modified/boost/random/uniform_int_distribution.hpp +7 -7
  1621. data/src/cxx_supportlib/vendor-modified/boost/random/uniform_real_distribution.hpp +2 -3
  1622. data/src/cxx_supportlib/vendor-modified/boost/random/uniform_smallint.hpp +4 -5
  1623. data/src/cxx_supportlib/vendor-modified/boost/random/xor_combine.hpp +4 -2
  1624. data/src/cxx_supportlib/vendor-modified/boost/range/as_literal.hpp +0 -6
  1625. data/src/cxx_supportlib/vendor-modified/boost/range/begin.hpp +4 -10
  1626. data/src/cxx_supportlib/vendor-modified/boost/range/concepts.hpp +1 -1
  1627. data/src/cxx_supportlib/vendor-modified/boost/range/config.hpp +1 -1
  1628. data/src/cxx_supportlib/vendor-modified/boost/range/end.hpp +4 -10
  1629. data/src/cxx_supportlib/vendor-modified/boost/range/iterator_range_core.hpp +0 -32
  1630. data/src/cxx_supportlib/vendor-modified/boost/range/rbegin.hpp +0 -13
  1631. data/src/cxx_supportlib/vendor-modified/boost/range/rend.hpp +0 -13
  1632. data/src/cxx_supportlib/vendor-modified/boost/range/size.hpp +1 -1
  1633. data/src/cxx_supportlib/vendor-modified/boost/rational.hpp +40 -14
  1634. data/src/cxx_supportlib/vendor-modified/boost/regex.hpp +4 -0
  1635. data/src/cxx_supportlib/vendor-modified/boost/regex/concepts.hpp +78 -73
  1636. data/src/cxx_supportlib/vendor-modified/boost/regex/config.hpp +104 -111
  1637. data/src/cxx_supportlib/vendor-modified/boost/regex/config/borland.hpp +1 -1
  1638. data/src/cxx_supportlib/vendor-modified/boost/regex/pattern_except.hpp +4 -72
  1639. data/src/cxx_supportlib/vendor-modified/boost/regex/pending/object_cache.hpp +4 -140
  1640. data/src/cxx_supportlib/vendor-modified/boost/regex/pending/unicode_iterator.hpp +8 -761
  1641. data/src/cxx_supportlib/vendor-modified/boost/regex/regex_traits.hpp +4 -0
  1642. data/src/cxx_supportlib/vendor-modified/boost/regex/user.hpp +2 -0
  1643. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex.hpp +25 -15
  1644. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_creator.hpp +47 -24
  1645. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +49 -28
  1646. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/c_regex_traits.hpp +342 -42
  1647. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/cpp_regex_traits.hpp +111 -28
  1648. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/cregex.hpp +0 -117
  1649. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/icu.hpp +1516 -0
  1650. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/indexed_bit_flag.hpp +54 -0
  1651. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/match_flags.hpp +18 -6
  1652. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/match_results.hpp +9 -9
  1653. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/mem_block_cache.hpp +39 -1
  1654. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/object_cache.hpp +171 -0
  1655. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/pattern_except.hpp +127 -0
  1656. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher.hpp +39 -20
  1657. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_common.hpp +17 -7
  1658. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_non_recursive.hpp +50 -52
  1659. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_recursive.hpp +12 -12
  1660. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/primary_transform.hpp +1 -1
  1661. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/protected_call.hpp +3 -1
  1662. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex.hpp +0 -36
  1663. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_format.hpp +10 -3
  1664. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_iterator.hpp +2 -0
  1665. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_raw_buffer.hpp +35 -4
  1666. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_token_iterator.hpp +9 -7
  1667. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_traits.hpp +1 -1
  1668. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_traits_defaults.hpp +641 -25
  1669. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/states.hpp +1 -1
  1670. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/sub_match.hpp +1 -1
  1671. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/u32regex_token_iterator.hpp +1 -1
  1672. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/unicode_iterator.hpp +790 -0
  1673. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/w32_regex_traits.hpp +524 -40
  1674. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex.hpp +734 -0
  1675. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_creator.hpp +1575 -0
  1676. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_parser.hpp +3117 -0
  1677. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/c_regex_traits.hpp +474 -0
  1678. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/char_regex_traits.hpp +59 -0
  1679. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/cpp_regex_traits.hpp +1040 -0
  1680. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/cregex.hpp +195 -0
  1681. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/error_type.hpp +59 -0
  1682. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/icu.hpp +1402 -0
  1683. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/indexed_bit_flag.hpp +54 -0
  1684. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/iterator_category.hpp +84 -0
  1685. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/iterator_traits.hpp +32 -0
  1686. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/match_flags.hpp +156 -0
  1687. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/match_results.hpp +667 -0
  1688. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/mem_block_cache.hpp +175 -0
  1689. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/object_cache.hpp +160 -0
  1690. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/pattern_except.hpp +105 -0
  1691. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher.hpp +576 -0
  1692. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher_common.hpp +915 -0
  1693. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher_non_recursive.hpp +1872 -0
  1694. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/primary_transform.hpp +120 -0
  1695. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regbase.hpp +158 -0
  1696. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex.hpp +106 -0
  1697. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_format.hpp +1124 -0
  1698. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_fwd.hpp +73 -0
  1699. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_grep.hpp +98 -0
  1700. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_iterator.hpp +173 -0
  1701. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_match.hpp +92 -0
  1702. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_merge.hpp +71 -0
  1703. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_raw_buffer.hpp +213 -0
  1704. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_replace.hpp +77 -0
  1705. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_search.hpp +103 -0
  1706. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_split.hpp +152 -0
  1707. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_token_iterator.hpp +255 -0
  1708. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_traits.hpp +130 -0
  1709. data/src/cxx_supportlib/vendor-modified/boost/{libs/regex/src/regex_traits_defaults.cpp → regex/v5/regex_traits_defaults.hpp} +719 -415
  1710. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_workaround.hpp +159 -0
  1711. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/states.hpp +299 -0
  1712. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/sub_match.hpp +382 -0
  1713. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/syntax_type.hpp +105 -0
  1714. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/u32regex_iterator.hpp +177 -0
  1715. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/u32regex_token_iterator.hpp +312 -0
  1716. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/unicode_iterator.hpp +864 -0
  1717. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/w32_regex_traits.hpp +1176 -0
  1718. data/src/cxx_supportlib/vendor-modified/boost/regex_fwd.hpp +4 -0
  1719. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/allocate_shared_array.hpp +92 -388
  1720. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/bad_weak_ptr.hpp +5 -5
  1721. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count.hpp +8 -4
  1722. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_gcc.hpp +7 -0
  1723. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_gcc_atomic.hpp +63 -0
  1724. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_gcc_x86.hpp +11 -0
  1725. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_nt.hpp +7 -0
  1726. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_pt.hpp +7 -0
  1727. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_spin.hpp +7 -0
  1728. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_std_atomic.hpp +8 -1
  1729. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_sync.hpp +13 -2
  1730. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/local_counted_base.hpp +6 -6
  1731. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/local_sp_deleter.hpp +3 -3
  1732. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +87 -47
  1733. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_convertible.hpp +1 -1
  1734. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base.hpp +12 -16
  1735. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp +13 -3
  1736. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_aix.hpp +10 -3
  1737. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp +13 -3
  1738. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_atomic.hpp +148 -0
  1739. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp +13 -3
  1740. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp +13 -3
  1741. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp +13 -3
  1742. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp +13 -3
  1743. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp +13 -3
  1744. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_nt.hpp +25 -16
  1745. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_pt.hpp +16 -8
  1746. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp +14 -4
  1747. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_spin.hpp +10 -3
  1748. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp +25 -17
  1749. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_sync.hpp +10 -3
  1750. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp +13 -3
  1751. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +23 -26
  1752. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp +27 -0
  1753. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_has_sync_intrinsics.hpp +69 -0
  1754. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_thread_pause.hpp +51 -0
  1755. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_thread_sleep.hpp +104 -0
  1756. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_typeinfo_.hpp +58 -0
  1757. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock.hpp +7 -9
  1758. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_gcc_arm.hpp +7 -0
  1759. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp +85 -0
  1760. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_nt.hpp +7 -0
  1761. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_pt.hpp +7 -0
  1762. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_std_atomic.hpp +13 -5
  1763. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_sync.hpp +8 -1
  1764. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/yield_k.hpp +14 -146
  1765. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ptr.hpp +47 -1
  1766. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_array.hpp +22 -22
  1767. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_object.hpp +1 -1
  1768. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_array.hpp +1 -1
  1769. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_ptr.hpp +1 -1
  1770. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_array.hpp +3 -3
  1771. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +58 -23
  1772. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/weak_ptr.hpp +79 -8
  1773. data/src/cxx_supportlib/vendor-modified/boost/static_assert.hpp +3 -3
  1774. data/src/cxx_supportlib/vendor-modified/boost/system/detail/cerrno.hpp +329 -0
  1775. data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +18 -8
  1776. data/src/cxx_supportlib/vendor-modified/boost/system/detail/enable_if.hpp +32 -0
  1777. data/src/cxx_supportlib/vendor-modified/boost/system/detail/errc.hpp +126 -0
  1778. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category.hpp +189 -0
  1779. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category_impl.hpp +108 -0
  1780. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.hpp +215 -0
  1781. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_condition.hpp +163 -0
  1782. data/src/cxx_supportlib/vendor-modified/boost/system/detail/generic_category.hpp +80 -58
  1783. data/src/cxx_supportlib/vendor-modified/boost/system/detail/generic_category_message.hpp +108 -0
  1784. data/src/cxx_supportlib/vendor-modified/boost/system/detail/{system_category_posix.hpp → is_generic_value.hpp} +7 -14
  1785. data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category.hpp +110 -0
  1786. data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_impl.hpp +83 -0
  1787. data/src/cxx_supportlib/vendor-modified/boost/system/detail/throws.hpp +59 -0
  1788. data/src/cxx_supportlib/vendor-modified/boost/system/detail/{std_interoperability.hpp → to_std_category.hpp} +66 -16
  1789. data/src/cxx_supportlib/vendor-modified/boost/system/errc.hpp +50 -0
  1790. data/src/cxx_supportlib/vendor-modified/boost/system/error_category.hpp +13 -0
  1791. data/src/cxx_supportlib/vendor-modified/boost/system/error_code.hpp +7 -909
  1792. data/src/cxx_supportlib/vendor-modified/boost/system/error_condition.hpp +13 -0
  1793. data/src/cxx_supportlib/vendor-modified/boost/system/generic_category.hpp +13 -0
  1794. data/src/cxx_supportlib/vendor-modified/boost/system/is_error_code_enum.hpp +30 -0
  1795. data/src/cxx_supportlib/vendor-modified/boost/system/is_error_condition_enum.hpp +30 -0
  1796. data/src/cxx_supportlib/vendor-modified/boost/system/system_category.hpp +14 -0
  1797. data/src/cxx_supportlib/vendor-modified/boost/system/system_error.hpp +1 -1
  1798. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/deque_adaptor.hpp +1 -1
  1799. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/deque_base.hpp +1 -1
  1800. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/detail/sync_deque_base.hpp +9 -21
  1801. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/detail/sync_queue_base.hpp +9 -21
  1802. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_adaptor.hpp +1 -1
  1803. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_base.hpp +1 -1
  1804. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_op_status.hpp +3 -1
  1805. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_bounded_queue.hpp +1 -1
  1806. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_deque.hpp +3 -3
  1807. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_priority_queue.hpp +4 -4
  1808. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_queue.hpp +3 -3
  1809. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_timed_queue.hpp +80 -14
  1810. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/queue.hpp +2 -1
  1811. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/config.hpp +12 -3
  1812. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/invoke.hpp +16 -17
  1813. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/platform_time.hpp +8 -8
  1814. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/thread.hpp +30 -11
  1815. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/basic_thread_pool.hpp +3 -0
  1816. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/executor.hpp +2 -0
  1817. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/executor_adaptor.hpp +2 -0
  1818. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/generic_executor_ref.hpp +2 -0
  1819. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/inline_executor.hpp +8 -0
  1820. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/loop_executor.hpp +4 -0
  1821. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/scheduled_thread_pool.hpp +4 -0
  1822. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/scheduler.hpp +2 -0
  1823. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/scheduling_adaptor.hpp +3 -0
  1824. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/serial_executor.hpp +4 -0
  1825. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/serial_executor_cont.hpp +9 -2
  1826. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/thread_executor.hpp +6 -0
  1827. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/work.hpp +3 -1
  1828. data/src/cxx_supportlib/vendor-modified/boost/thread/experimental/parallel/v2/task_region.hpp +6 -2
  1829. data/src/cxx_supportlib/vendor-modified/boost/thread/externally_locked.hpp +1 -0
  1830. data/src/cxx_supportlib/vendor-modified/boost/thread/future.hpp +2 -1
  1831. data/src/cxx_supportlib/vendor-modified/boost/thread/futures/wait_for_any.hpp +1 -0
  1832. data/src/cxx_supportlib/vendor-modified/boost/thread/interruption.hpp +22 -0
  1833. data/src/cxx_supportlib/vendor-modified/boost/thread/poly_lockable.hpp +7 -2
  1834. data/src/cxx_supportlib/vendor-modified/boost/thread/poly_shared_lockable.hpp +16 -12
  1835. data/src/cxx_supportlib/vendor-modified/boost/thread/poly_shared_lockable_adapter.hpp +3 -4
  1836. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/condition_variable.hpp +18 -24
  1837. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/condition_variable_fwd.hpp +6 -13
  1838. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/mutex.hpp +11 -37
  1839. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/once.hpp +29 -28
  1840. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/once_atomic.hpp +1 -1
  1841. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/pthread_helpers.hpp +163 -18
  1842. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/pthread_mutex_scoped_lock.hpp +1 -69
  1843. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/recursive_mutex.hpp +19 -19
  1844. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/shared_mutex.hpp +1 -1
  1845. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/thread_data.hpp +9 -6
  1846. data/src/cxx_supportlib/vendor-modified/boost/thread/tss.hpp +23 -41
  1847. data/src/cxx_supportlib/vendor-modified/boost/thread/user_scheduler.hpp +3 -0
  1848. data/src/cxx_supportlib/vendor-modified/boost/thread/v2/shared_mutex.hpp +1 -1
  1849. data/src/cxx_supportlib/vendor-modified/boost/throw_exception.hpp +138 -61
  1850. data/src/cxx_supportlib/vendor-modified/boost/tuple/detail/tuple_basic.hpp +15 -11
  1851. data/src/cxx_supportlib/vendor-modified/boost/tuple/tuple.hpp +51 -0
  1852. data/src/cxx_supportlib/vendor-modified/boost/type_index.hpp +1 -1
  1853. data/src/cxx_supportlib/vendor-modified/boost/type_index/stl_type_index.hpp +1 -1
  1854. data/src/cxx_supportlib/vendor-modified/boost/type_index/type_index_facade.hpp +1 -1
  1855. data/src/cxx_supportlib/vendor-modified/boost/type_traits/add_pointer.hpp +1 -1
  1856. data/src/cxx_supportlib/vendor-modified/boost/type_traits/aligned_storage.hpp +1 -1
  1857. data/src/cxx_supportlib/vendor-modified/boost/type_traits/alignment_of.hpp +3 -3
  1858. data/src/cxx_supportlib/vendor-modified/boost/type_traits/conjunction.hpp +40 -0
  1859. data/src/cxx_supportlib/vendor-modified/boost/type_traits/copy_cv_ref.hpp +31 -0
  1860. data/src/cxx_supportlib/vendor-modified/boost/type_traits/copy_reference.hpp +35 -0
  1861. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/config.hpp +25 -4
  1862. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/has_binary_operator.hpp +6 -6
  1863. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/has_postfix_operator.hpp +6 -6
  1864. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/has_prefix_operator.hpp +6 -6
  1865. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_cxx_03.hpp +3 -3
  1866. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_cxx_11.hpp +276 -101
  1867. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_ptr_tester.hpp +415 -255
  1868. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_likely_lambda.hpp +2 -1
  1869. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp +1345 -1542
  1870. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp +4 -4
  1871. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp +288 -148
  1872. data/src/cxx_supportlib/vendor-modified/boost/type_traits/disjunction.hpp +40 -0
  1873. data/src/cxx_supportlib/vendor-modified/boost/type_traits/extent.hpp +2 -2
  1874. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_minus.hpp +6 -6
  1875. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_minus_assign.hpp +6 -6
  1876. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_nothrow_copy.hpp +1 -1
  1877. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_plus_assign.hpp +6 -6
  1878. data/src/cxx_supportlib/vendor-modified/boost/type_traits/integral_constant.hpp +1 -1
  1879. data/src/cxx_supportlib/vendor-modified/boost/type_traits/integral_promotion.hpp +2 -2
  1880. data/src/cxx_supportlib/vendor-modified/boost/type_traits/intrinsics.hpp +1 -1
  1881. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_array.hpp +2 -2
  1882. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_base_and_derived.hpp +2 -2
  1883. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_bounded_array.hpp +42 -0
  1884. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_complete.hpp +1 -1
  1885. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp +1 -1
  1886. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_const.hpp +1 -1
  1887. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_constructible.hpp +1 -1
  1888. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_convertible.hpp +4 -4
  1889. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_default_constructible.hpp +1 -1
  1890. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_destructible.hpp +1 -1
  1891. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_empty.hpp +4 -4
  1892. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_enum.hpp +4 -4
  1893. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_fundamental.hpp +1 -1
  1894. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_integral.hpp +3 -3
  1895. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_lvalue_reference.hpp +1 -1
  1896. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_member_pointer.hpp +1 -1
  1897. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_pointer.hpp +1 -1
  1898. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_same.hpp +1 -1
  1899. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_scoped_enum.hpp +26 -0
  1900. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_signed.hpp +2 -2
  1901. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_trivially_copyable.hpp +31 -0
  1902. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_unbounded_array.hpp +41 -0
  1903. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_unscoped_enum.hpp +25 -0
  1904. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_unsigned.hpp +2 -2
  1905. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_virtual_base_of.hpp +2 -2
  1906. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_volatile.hpp +1 -1
  1907. data/src/cxx_supportlib/vendor-modified/boost/type_traits/negation.hpp +23 -0
  1908. data/src/cxx_supportlib/vendor-modified/boost/type_traits/rank.hpp +4 -4
  1909. data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_all_extents.hpp +1 -1
  1910. data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_const.hpp +1 -1
  1911. data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_cv.hpp +1 -1
  1912. data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_extent.hpp +1 -1
  1913. data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_volatile.hpp +1 -1
  1914. data/src/cxx_supportlib/vendor-modified/boost/type_traits/type_with_alignment.hpp +3 -3
  1915. data/src/cxx_supportlib/vendor-modified/boost/typeof/int_encoding.hpp +1 -0
  1916. data/src/cxx_supportlib/vendor-modified/boost/typeof/modifiers.hpp +3 -3
  1917. data/src/cxx_supportlib/vendor-modified/boost/typeof/register_fundamental.hpp +2 -2
  1918. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/string.hpp +1 -1
  1919. data/src/cxx_supportlib/vendor-modified/boost/typeof/template_encoding.hpp +1 -1
  1920. data/src/cxx_supportlib/vendor-modified/boost/typeof/template_template_param.hpp +1 -1
  1921. data/src/cxx_supportlib/vendor-modified/boost/typeof/typeof.hpp +4 -4
  1922. data/src/cxx_supportlib/vendor-modified/boost/typeof/typeof_impl.hpp +2 -1
  1923. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map.hpp +8 -8
  1924. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set.hpp +8 -8
  1925. data/src/cxx_supportlib/vendor-modified/boost/utility/detail/result_of_iterate.hpp +3 -3
  1926. data/src/cxx_supportlib/vendor-modified/boost/utility/string_ref.hpp +3 -42
  1927. data/src/cxx_supportlib/vendor-modified/boost/utility/string_view.hpp +4 -43
  1928. data/src/cxx_supportlib/vendor-modified/boost/utility/value_init.hpp +29 -67
  1929. data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
  1930. data/src/cxx_supportlib/vendor-modified/modp_b64_data.h +0 -4
  1931. data/src/cxx_supportlib/vendor-modified/modp_b64_strict_aliasing.cpp +5 -1
  1932. data/src/helper-scripts/node-loader.js +1 -1
  1933. data/src/helper-scripts/prespawn +1 -0
  1934. data/src/nginx_module/ConfigGeneral/AutoGeneratedDefinitions.c +24 -0
  1935. data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c +14 -0
  1936. data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c +24 -0
  1937. data/src/nginx_module/Configuration.c +9 -5
  1938. data/src/nginx_module/ContentHandler.c +0 -2
  1939. data/src/nginx_module/LocationConfig/AutoGeneratedCreateFunction.c +16 -0
  1940. data/src/nginx_module/LocationConfig/AutoGeneratedHeaderSerialization.c +30 -0
  1941. data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c +29 -0
  1942. data/src/nginx_module/LocationConfig/AutoGeneratedMergeFunction.c +6 -0
  1943. data/src/nginx_module/LocationConfig/AutoGeneratedStruct.h +11 -0
  1944. data/src/nginx_module/config +2 -0
  1945. data/src/nginx_module/ngx_http_passenger_module.c +2 -2
  1946. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/logger.js +0 -0
  1947. data/src/ruby_supportlib/phusion_passenger.rb +8 -8
  1948. data/src/ruby_supportlib/phusion_passenger/admin_tools.rb +1 -1
  1949. data/src/ruby_supportlib/phusion_passenger/admin_tools/instance_registry.rb +4 -1
  1950. data/src/ruby_supportlib/phusion_passenger/admin_tools/memory_stats.rb +1 -1
  1951. data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +15 -0
  1952. data/src/ruby_supportlib/phusion_passenger/common_library.rb +2 -0
  1953. data/src/ruby_supportlib/phusion_passenger/config/download_agent_command.rb +1 -1
  1954. data/src/ruby_supportlib/phusion_passenger/config/download_nginx_engine_command.rb +1 -1
  1955. data/src/ruby_supportlib/phusion_passenger/constants.rb +4 -2
  1956. data/src/ruby_supportlib/phusion_passenger/loader_shared_helpers.rb +18 -8
  1957. data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +20 -0
  1958. data/src/ruby_supportlib/phusion_passenger/platform_info/apache.rb +2 -4
  1959. data/src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb +1 -1
  1960. data/src/ruby_supportlib/phusion_passenger/platform_info/curl.rb +3 -0
  1961. data/src/ruby_supportlib/phusion_passenger/platform_info/cxx_portability.rb +3 -0
  1962. data/src/ruby_supportlib/phusion_passenger/platform_info/openssl.rb +5 -0
  1963. data/src/ruby_supportlib/phusion_passenger/rack/thread_handler_extension.rb +10 -0
  1964. data/src/ruby_supportlib/phusion_passenger/request_handler.rb +7 -6
  1965. data/src/ruby_supportlib/phusion_passenger/standalone/config_options_list.rb +13 -0
  1966. data/src/ruby_supportlib/phusion_passenger/standalone/start_command.rb +1 -1
  1967. data/src/ruby_supportlib/phusion_passenger/standalone/start_command/builtin_engine.rb +3 -2
  1968. data/src/ruby_supportlib/phusion_passenger/standalone/start_command/nginx_engine.rb +1 -1
  1969. data/src/ruby_supportlib/phusion_passenger/utils/unseekable_socket.rb +15 -11
  1970. metadata +529 -95
  1971. data/src/cxx_supportlib/vendor-modified/boost/asio/datagram_socket_service.hpp +0 -468
  1972. data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer_service.hpp +0 -175
  1973. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental.hpp +0 -22
  1974. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_spawn.hpp +0 -228
  1975. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detached.hpp +0 -67
  1976. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/co_spawn.hpp +0 -878
  1977. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/detached.hpp +0 -93
  1978. data/src/cxx_supportlib/vendor-modified/boost/asio/handler_type.hpp +0 -52
  1979. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.cpp +0 -25
  1980. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_service.hpp +0 -202
  1981. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor_service.hpp +0 -281
  1982. data/src/cxx_supportlib/vendor-modified/boost/asio/raw_socket_service.hpp +0 -468
  1983. data/src/cxx_supportlib/vendor-modified/boost/asio/seq_packet_socket_service.hpp +0 -418
  1984. data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_service.hpp +0 -251
  1985. data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set_service.hpp +0 -144
  1986. data/src/cxx_supportlib/vendor-modified/boost/asio/socket_acceptor_service.hpp +0 -374
  1987. data/src/cxx_supportlib/vendor-modified/boost/asio/stream_socket_service.hpp +0 -414
  1988. data/src/cxx_supportlib/vendor-modified/boost/asio/waitable_timer_service.hpp +0 -212
  1989. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_handle.hpp +0 -275
  1990. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle_service.hpp +0 -185
  1991. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle_service.hpp +0 -216
  1992. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle_service.hpp +0 -212
  1993. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_flag.hpp +0 -71
  1994. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_arm.hpp +0 -39
  1995. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_ppc.hpp +0 -37
  1996. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_x86.hpp +0 -40
  1997. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/lockpool.hpp +0 -51
  1998. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/operations.hpp +0 -24
  1999. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/operations_fwd.hpp +0 -35
  2000. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/operations_lockfree.hpp +0 -30
  2001. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_emulated.hpp +0 -162
  2002. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_atomic.hpp +0 -392
  2003. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_x86.hpp +0 -563
  2004. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/storage_type.hpp +0 -207
  2005. data/src/cxx_supportlib/vendor-modified/boost/bind.hpp +0 -41
  2006. data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/allocators.hpp +0 -89
  2007. data/src/cxx_supportlib/vendor-modified/boost/detail/endian.hpp +0 -11
  2008. data/src/cxx_supportlib/vendor-modified/boost/detail/iterator.hpp +0 -39
  2009. data/src/cxx_supportlib/vendor-modified/boost/detail/sp_typeinfo.hpp +0 -36
  2010. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/c_regex_traits.cpp +0 -206
  2011. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/cpp_regex_traits.cpp +0 -117
  2012. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/cregex.cpp +0 -660
  2013. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/instances.cpp +0 -32
  2014. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex_raw_buffer.cpp +0 -72
  2015. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/wc_regex_traits.cpp +0 -314
  2016. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/winstances.cpp +0 -35
  2017. data/src/cxx_supportlib/vendor-modified/boost/math/policies/policy.hpp +0 -1040
  2018. data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/detail/fp_traits.hpp +0 -581
  2019. data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/detail/round_fwd.hpp +0 -93
  2020. data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/fpclassify.hpp +0 -640
  2021. data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/math_fwd.hpp +0 -1678
  2022. data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/sign.hpp +0 -194
  2023. data/src/cxx_supportlib/vendor-modified/boost/math/tools/config.hpp +0 -469
  2024. data/src/cxx_supportlib/vendor-modified/boost/math/tools/promotion.hpp +0 -182
  2025. data/src/cxx_supportlib/vendor-modified/boost/math/tools/real_cast.hpp +0 -31
  2026. data/src/cxx_supportlib/vendor-modified/boost/math/tools/user.hpp +0 -105
  2027. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/overloads.hpp +0 -88
  2028. data/src/cxx_supportlib/vendor-modified/boost/predef/detail/endian_compat.h +0 -28
  2029. data/src/cxx_supportlib/vendor-modified/boost/predef/os/android.h +0 -45
  2030. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/fileiter.hpp +0 -452
  2031. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/instances.hpp +0 -236
  2032. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_solaris.hpp +0 -59
  2033. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_clang.hpp +0 -151
  2034. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_cw_x86.hpp +0 -161
  2035. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_solaris.hpp +0 -116
  2036. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_has_sync.hpp +0 -69
@@ -48,12 +48,48 @@
48
48
  namespace boost {
49
49
  namespace container {
50
50
 
51
- #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
51
+ namespace dtl{
52
52
 
53
- template <class T, class Allocator = new_allocator<T> >
54
- class small_vector_base;
53
+ template<class Options>
54
+ struct get_small_vector_opt
55
+ {
56
+ typedef Options type;
57
+ };
55
58
 
56
- #endif
59
+ template<>
60
+ struct get_small_vector_opt<void>
61
+ {
62
+ typedef small_vector_null_opt type;
63
+ };
64
+
65
+ template<class Options>
66
+ struct get_vopt_from_svopt
67
+ : get_small_vector_opt<Options>::type
68
+ {
69
+ typedef typename get_small_vector_opt<Options>::type options_t;
70
+ typedef vector_opt< typename options_t::growth_factor_type, void> type;
71
+ };
72
+
73
+ template<>
74
+ struct get_vopt_from_svopt<void>
75
+ {
76
+ typedef void type;
77
+ };
78
+
79
+ template <class T, class SecondaryAllocator, class Options>
80
+ struct vector_for_small_vector
81
+ {
82
+ typedef vector
83
+ < T
84
+ , small_vector_allocator
85
+ < T
86
+ , typename allocator_traits<typename real_allocator<T, SecondaryAllocator>::type>::template portable_rebind_alloc<void>::type
87
+ , Options>
88
+ , typename dtl::get_vopt_from_svopt<Options>::type
89
+ > type;
90
+ };
91
+
92
+ } //namespace dtl
57
93
 
58
94
  //! A non-standard allocator used to implement `small_vector`.
59
95
  //! Users should never use it directly. It is described here
@@ -78,45 +114,47 @@ class small_vector_base;
78
114
  //! is being used to store vector elements.
79
115
  //!
80
116
  //! `small_vector_allocator` assumes that will be instantiated as
81
- //! `boost::container::vector< T, small_vector_allocator<Allocator> >`
117
+ //! `boost::container::vector< T, small_vector_allocator<T, Allocator> >`
82
118
  //! and internal storage can be obtained downcasting that vector
83
119
  //! to `small_vector_base<T>`.
84
- template<class Allocator>
120
+ template<class T, class VoidAllocator BOOST_CONTAINER_DOCONLY(= void), class Options BOOST_CONTAINER_DOCONLY(= void)>
85
121
  class small_vector_allocator
86
- : public Allocator
122
+ : public allocator_traits<typename real_allocator<T, VoidAllocator>::type>::template portable_rebind_alloc<T>::type
87
123
  {
88
124
  typedef unsigned int allocation_type;
89
125
  #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
90
126
  private:
91
127
 
128
+ typedef typename allocator_traits<typename real_allocator<T, VoidAllocator>::type>::template portable_rebind_alloc<T>::type allocator_type;
129
+
92
130
  BOOST_COPYABLE_AND_MOVABLE(small_vector_allocator)
93
131
 
94
- BOOST_CONTAINER_FORCEINLINE const Allocator &as_base() const
95
- { return static_cast<const Allocator&>(*this); }
132
+ BOOST_CONTAINER_FORCEINLINE const allocator_type &as_base() const BOOST_NOEXCEPT
133
+ { return static_cast<const allocator_type&>(*this); }
96
134
 
97
- BOOST_CONTAINER_FORCEINLINE Allocator &as_base()
98
- { return static_cast<Allocator&>(*this); }
135
+ BOOST_CONTAINER_FORCEINLINE allocator_type &as_base() BOOST_NOEXCEPT
136
+ { return static_cast<allocator_type&>(*this); }
99
137
 
100
138
  #endif //#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
101
139
 
102
140
  public:
103
141
  #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
104
- typedef allocator_traits<Allocator> allocator_traits_type;
142
+ typedef allocator_traits<allocator_type> allocator_traits_type;
105
143
  #endif //#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
106
144
 
107
- typedef typename allocator_traits<Allocator>::value_type value_type;
108
- typedef typename allocator_traits<Allocator>::pointer pointer;
109
- typedef typename allocator_traits<Allocator>::const_pointer const_pointer;
110
- typedef typename allocator_traits<Allocator>::reference reference;
111
- typedef typename allocator_traits<Allocator>::const_reference const_reference;
112
- typedef typename allocator_traits<Allocator>::size_type size_type;
113
- typedef typename allocator_traits<Allocator>::difference_type difference_type;
114
- typedef typename allocator_traits<Allocator>::void_pointer void_pointer;
115
- typedef typename allocator_traits<Allocator>::const_void_pointer const_void_pointer;
116
-
117
- typedef typename allocator_traits<Allocator>::propagate_on_container_copy_assignment propagate_on_container_copy_assignment;
118
- typedef typename allocator_traits<Allocator>::propagate_on_container_move_assignment propagate_on_container_move_assignment;
119
- typedef typename allocator_traits<Allocator>::propagate_on_container_swap propagate_on_container_swap;
145
+ typedef typename allocator_traits<allocator_type>::value_type value_type;
146
+ typedef typename allocator_traits<allocator_type>::pointer pointer;
147
+ typedef typename allocator_traits<allocator_type>::const_pointer const_pointer;
148
+ typedef typename allocator_traits<allocator_type>::reference reference;
149
+ typedef typename allocator_traits<allocator_type>::const_reference const_reference;
150
+ typedef typename allocator_traits<allocator_type>::size_type size_type;
151
+ typedef typename allocator_traits<allocator_type>::difference_type difference_type;
152
+ typedef typename allocator_traits<allocator_type>::void_pointer void_pointer;
153
+ typedef typename allocator_traits<allocator_type>::const_void_pointer const_void_pointer;
154
+
155
+ typedef typename allocator_traits<allocator_type>::propagate_on_container_copy_assignment propagate_on_container_copy_assignment;
156
+ typedef typename allocator_traits<allocator_type>::propagate_on_container_move_assignment propagate_on_container_move_assignment;
157
+ typedef typename allocator_traits<allocator_type>::propagate_on_container_swap propagate_on_container_swap;
120
158
  //! An integral constant with member `value == false`
121
159
  typedef BOOST_CONTAINER_IMPDEF(dtl::bool_<false>) is_always_equal;
122
160
  //! An integral constant with member `value == true`
@@ -129,81 +167,80 @@ class small_vector_allocator
129
167
  template<class T2>
130
168
  struct rebind
131
169
  {
132
- typedef typename allocator_traits<Allocator>::template rebind_alloc<T2>::type other;
170
+ typedef typename allocator_traits<allocator_type>::template portable_rebind_alloc<T2>::type other;
133
171
  };
134
172
 
135
- #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) || defined(BOOST_CONTAINER_DOXYGEN_INVOKED)
136
- //!Constructor from arbitrary arguments
137
- template<class ...Args>
138
- BOOST_CONTAINER_FORCEINLINE explicit small_vector_allocator(BOOST_FWD_REF(Args) ...args)
139
- : Allocator(::boost::forward<Args>(args)...)
140
- {}
141
- #else
142
- #define BOOST_CONTAINER_SMALL_VECTOR_ALLOCATOR_CTOR_CODE(N) \
143
- BOOST_MOVE_TMPL_LT##N BOOST_MOVE_CLASS##N BOOST_MOVE_GT##N \
144
- BOOST_CONTAINER_FORCEINLINE explicit small_vector_allocator(BOOST_MOVE_UREF##N)\
145
- : Allocator(BOOST_MOVE_FWD##N)\
146
- {}\
147
- //
148
- BOOST_MOVE_ITERATE_0TO9(BOOST_CONTAINER_SMALL_VECTOR_ALLOCATOR_CTOR_CODE)
149
- #undef BOOST_CONTAINER_SMALL_VECTOR_ALLOCATOR_CTOR_CODE
150
- #endif
173
+ BOOST_CONTAINER_FORCEINLINE small_vector_allocator() BOOST_NOEXCEPT_IF(dtl::is_nothrow_default_constructible<allocator_type>::value)
174
+ {}
151
175
 
152
176
  //!Constructor from other small_vector_allocator.
153
177
  //!Never throws
154
178
  BOOST_CONTAINER_FORCEINLINE small_vector_allocator
155
179
  (const small_vector_allocator &other) BOOST_NOEXCEPT_OR_NOTHROW
156
- : Allocator(other.as_base())
180
+ : allocator_type(other.as_base())
157
181
  {}
158
182
 
159
183
  //!Move constructor from small_vector_allocator.
160
184
  //!Never throws
161
185
  BOOST_CONTAINER_FORCEINLINE small_vector_allocator
162
186
  (BOOST_RV_REF(small_vector_allocator) other) BOOST_NOEXCEPT_OR_NOTHROW
163
- : Allocator(::boost::move(other.as_base()))
187
+ : allocator_type(::boost::move(other.as_base()))
164
188
  {}
165
189
 
166
190
  //!Constructor from related small_vector_allocator.
167
191
  //!Never throws
168
- template<class OtherAllocator>
192
+ template<class U, class OtherVoidAllocator, class OtherOptions>
169
193
  BOOST_CONTAINER_FORCEINLINE small_vector_allocator
170
- (const small_vector_allocator<OtherAllocator> &other) BOOST_NOEXCEPT_OR_NOTHROW
171
- : Allocator(other.as_base())
194
+ (const small_vector_allocator<U, OtherVoidAllocator, OtherOptions> &other) BOOST_NOEXCEPT_OR_NOTHROW
195
+ : allocator_type(other.as_base())
172
196
  {}
173
197
 
174
198
  //!Move constructor from related small_vector_allocator.
175
199
  //!Never throws
176
- template<class OtherAllocator>
200
+ template<class U, class OtherVoidAllocator, class OtherOptions>
177
201
  BOOST_CONTAINER_FORCEINLINE small_vector_allocator
178
- (BOOST_RV_REF(small_vector_allocator<OtherAllocator>) other) BOOST_NOEXCEPT_OR_NOTHROW
179
- : Allocator(::boost::move(other.as_base()))
202
+ (BOOST_RV_REF(small_vector_allocator<U BOOST_MOVE_I OtherVoidAllocator BOOST_MOVE_I OtherOptions>) other) BOOST_NOEXCEPT_OR_NOTHROW
203
+ : allocator_type(::boost::move(other.as_base()))
204
+ {}
205
+
206
+ //!Constructor from allocator_type.
207
+ //!Never throws
208
+ BOOST_CONTAINER_FORCEINLINE explicit small_vector_allocator
209
+ (const allocator_type &other) BOOST_NOEXCEPT_OR_NOTHROW
210
+ : allocator_type(other)
180
211
  {}
181
212
 
182
213
  //!Assignment from other small_vector_allocator.
183
214
  //!Never throws
184
215
  BOOST_CONTAINER_FORCEINLINE small_vector_allocator &
185
216
  operator=(BOOST_COPY_ASSIGN_REF(small_vector_allocator) other) BOOST_NOEXCEPT_OR_NOTHROW
186
- { return static_cast<small_vector_allocator&>(this->Allocator::operator=(other.as_base())); }
217
+ { return static_cast<small_vector_allocator&>(this->allocator_type::operator=(other.as_base())); }
187
218
 
188
- //!Move constructor from other small_vector_allocator.
219
+ //!Move assignment from other small_vector_allocator.
189
220
  //!Never throws
190
221
  BOOST_CONTAINER_FORCEINLINE small_vector_allocator &
191
222
  operator=(BOOST_RV_REF(small_vector_allocator) other) BOOST_NOEXCEPT_OR_NOTHROW
192
- { return static_cast<small_vector_allocator&>(this->Allocator::operator=(::boost::move(other.as_base()))); }
223
+ { return static_cast<small_vector_allocator&>(this->allocator_type::operator=(::boost::move(other.as_base()))); }
193
224
 
194
225
  //!Assignment from related small_vector_allocator.
195
226
  //!Never throws
196
- template<class OtherAllocator>
227
+ template<class U, class OtherVoidAllocator>
197
228
  BOOST_CONTAINER_FORCEINLINE small_vector_allocator &
198
- operator=(BOOST_COPY_ASSIGN_REF(small_vector_allocator<OtherAllocator>) other) BOOST_NOEXCEPT_OR_NOTHROW
199
- { return static_cast<small_vector_allocator&>(this->Allocator::operator=(other.as_base())); }
229
+ operator=(BOOST_COPY_ASSIGN_REF(small_vector_allocator<U BOOST_MOVE_I OtherVoidAllocator BOOST_MOVE_I Options>) other) BOOST_NOEXCEPT_OR_NOTHROW
230
+ { return static_cast<small_vector_allocator&>(this->allocator_type::operator=(other.as_base())); }
200
231
 
201
232
  //!Move assignment from related small_vector_allocator.
202
233
  //!Never throws
203
- template<class OtherAllocator>
234
+ template<class U, class OtherVoidAllocator>
204
235
  BOOST_CONTAINER_FORCEINLINE small_vector_allocator &
205
- operator=(BOOST_RV_REF(small_vector_allocator<OtherAllocator>) other) BOOST_NOEXCEPT_OR_NOTHROW
206
- { return static_cast<small_vector_allocator&>(this->Allocator::operator=(::boost::move(other.as_base()))); }
236
+ operator=(BOOST_RV_REF(small_vector_allocator<U BOOST_MOVE_I OtherVoidAllocator BOOST_MOVE_I Options>) other) BOOST_NOEXCEPT_OR_NOTHROW
237
+ { return static_cast<small_vector_allocator&>(this->allocator_type::operator=(::boost::move(other.as_base()))); }
238
+
239
+ //!Move assignment from allocator_type.
240
+ //!Never throws
241
+ BOOST_CONTAINER_FORCEINLINE small_vector_allocator &
242
+ operator=(const allocator_type &other) BOOST_NOEXCEPT_OR_NOTHROW
243
+ { return static_cast<small_vector_allocator&>(this->allocator_type::operator=(other)); }
207
244
 
208
245
  //!Allocates storage from the standard-conforming allocator
209
246
  BOOST_CONTAINER_FORCEINLINE pointer allocate(size_type count, const_void_pointer hint = const_void_pointer())
@@ -269,12 +306,16 @@ class small_vector_allocator
269
306
  //!must be deallocated only with deallocate_one().
270
307
  //!Throws bad_alloc if there is no enough memory
271
308
  //!This function is available only with Version == 2
272
- using Allocator::allocate_one;
273
- using Allocator::allocate_individual;
274
- using Allocator::deallocate_one;
275
- using Allocator::deallocate_individual;
276
- using Allocator::allocate_many;
277
- using Allocator::deallocate_many;*/
309
+ using allocator_type::allocate_one;
310
+ using allocator_type::allocate_individual;
311
+ using allocator_type::deallocate_one;
312
+ using allocator_type::deallocate_individual;
313
+ using allocator_type::allocate_many;
314
+ using allocator_type::deallocate_many;*/
315
+
316
+ typedef vector_alloc_holder< small_vector_allocator, size_type > vector_alloc_holder_t;
317
+ typedef typename dtl::vector_for_small_vector<T, allocator_type, Options>::type vector_base;
318
+ typedef small_vector_base<value_type, allocator_type, Options> derived_type;
278
319
 
279
320
  BOOST_CONTAINER_FORCEINLINE bool is_internal_storage(const_pointer p) const
280
321
  { return this->internal_storage() == p; }
@@ -282,12 +323,6 @@ class small_vector_allocator
282
323
  BOOST_CONTAINER_FORCEINLINE
283
324
  const_pointer internal_storage() const
284
325
  {
285
- typedef typename Allocator::value_type value_type;
286
- typedef typename allocator_traits_type::size_type size_type;
287
- typedef vector_alloc_holder< small_vector_allocator<Allocator>, size_type > vector_alloc_holder_t;
288
- typedef vector<value_type, small_vector_allocator<Allocator> > vector_base;
289
- typedef small_vector_base<value_type, Allocator> derived_type;
290
- //
291
326
  const vector_alloc_holder_t &v_holder = static_cast<const vector_alloc_holder_t &>(*this);
292
327
  const vector_base &v_base = reinterpret_cast<const vector_base &>(v_holder);
293
328
  const derived_type &d_base = static_cast<const derived_type &>(v_base);
@@ -297,12 +332,6 @@ class small_vector_allocator
297
332
  BOOST_CONTAINER_FORCEINLINE
298
333
  pointer internal_storage()
299
334
  {
300
- typedef typename Allocator::value_type value_type;
301
- typedef typename allocator_traits_type::size_type size_type;
302
- typedef vector_alloc_holder< small_vector_allocator<Allocator>, size_type > vector_alloc_holder_t;
303
- typedef vector<value_type, small_vector_allocator<Allocator> > vector_base;
304
- typedef small_vector_base<value_type, Allocator> derived_type;
305
- //
306
335
  vector_alloc_holder_t &v_holder = static_cast<vector_alloc_holder_t &>(*this);
307
336
  vector_base &v_base = reinterpret_cast<vector_base &>(v_holder);
308
337
  derived_type &d_base = static_cast<derived_type &>(v_base);
@@ -336,23 +365,30 @@ class small_vector_allocator
336
365
  //!
337
366
  //! All `boost::container:vector` member functions are inherited. See `vector` documentation for details.
338
367
  //!
339
- template <class T, class SecondaryAllocator>
368
+ template <class T, class SecondaryAllocator, class Options>
340
369
  class small_vector_base
341
- : public vector<T, small_vector_allocator<SecondaryAllocator> >
370
+ : public dtl::vector_for_small_vector<T, SecondaryAllocator, Options>::type
342
371
  {
343
- #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
372
+ #ifndef BOOST_CONTAINER_DOXYGEN_INVOKEDVECTOR
344
373
  public:
345
374
  //Make it public as it will be inherited by small_vector and container
346
375
  //must have this public member
347
- typedef typename allocator_traits<SecondaryAllocator>::pointer pointer;
348
- typedef typename allocator_traits<SecondaryAllocator>::const_pointer const_pointer;
349
- typedef typename allocator_traits<SecondaryAllocator>::void_pointer void_pointer;
350
- typedef typename allocator_traits<SecondaryAllocator>::const_void_pointer const_void_pointer;
376
+ typedef typename real_allocator<T, SecondaryAllocator>::type secondary_allocator_t;
377
+ typedef typename allocator_traits<secondary_allocator_t>::
378
+ template portable_rebind_alloc<void>::type void_allocator_t;
379
+ typedef typename dtl::get_small_vector_opt<Options>::type options_t;
380
+ typedef typename dtl::vector_for_small_vector
381
+ <T, SecondaryAllocator, Options>::type base_type;
382
+ typedef typename allocator_traits<secondary_allocator_t>::pointer pointer;
383
+ typedef typename allocator_traits<secondary_allocator_t>::const_pointer const_pointer;
384
+ typedef typename allocator_traits<secondary_allocator_t>::void_pointer void_pointer;
385
+ typedef typename allocator_traits<secondary_allocator_t>::const_void_pointer const_void_pointer;
386
+ typedef small_vector_allocator<T, void_allocator_t, Options> allocator_type;
351
387
 
352
388
  private:
353
389
  BOOST_COPYABLE_AND_MOVABLE(small_vector_base)
354
390
 
355
- friend class small_vector_allocator<SecondaryAllocator>;
391
+ friend class small_vector_allocator<T, void_allocator_t, Options>;
356
392
 
357
393
  BOOST_CONTAINER_FORCEINLINE
358
394
  const_pointer internal_storage() const BOOST_NOEXCEPT_OR_NOTHROW
@@ -374,14 +410,15 @@ class small_vector_base
374
410
  return boost::intrusive::pointer_traits<pointer>::static_cast_from(void_p);
375
411
  }
376
412
 
377
- typedef vector<T, small_vector_allocator<SecondaryAllocator> > base_type;
378
413
  base_type &as_base() { return static_cast<base_type&>(*this); }
379
414
  const base_type &as_base() const { return static_cast<const base_type&>(*this); }
380
415
 
416
+ static const std::size_t final_alignment =
417
+ options_t::inplace_alignment ? options_t::inplace_alignment : dtl::alignment_of<T>::value;
381
418
  public:
419
+
382
420
  typedef typename dtl::aligned_storage
383
- <sizeof(T), dtl::alignment_of<T>::value>::type storage_type;
384
- typedef small_vector_allocator<SecondaryAllocator> allocator_type;
421
+ <sizeof(T), final_alignment>::type storage_type;
385
422
 
386
423
  protected:
387
424
 
@@ -423,6 +460,7 @@ class small_vector_base
423
460
  this->assign( boost::make_move_iterator(boost::movelib::iterator_to_raw_pointer(x.begin()))
424
461
  , boost::make_move_iterator(boost::movelib::iterator_to_raw_pointer(x.end ()))
425
462
  );
463
+ x.clear();
426
464
  }
427
465
  }
428
466
  #endif //#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
@@ -447,11 +485,14 @@ struct small_vector_storage_calculator_helper<Needed, Hdr, SSize, true>
447
485
  static const std::size_t value = 0u;
448
486
  };
449
487
 
450
- template<class Storage, class Allocator, class T, std::size_t N>
488
+ template<class Storage, class Allocator, class T, std::size_t N, class Options>
451
489
  struct small_vector_storage_calculator
452
490
  {
453
- typedef small_vector_base<T, Allocator> svh_type;
454
- typedef vector<T, small_vector_allocator<Allocator> > svhb_type;
491
+ typedef small_vector_base<T, Allocator, Options> svh_type;
492
+ typedef typename real_allocator<T, Allocator>::type value_allocator_t;
493
+ typedef typename allocator_traits<value_allocator_t>::template portable_rebind_alloc<void>::type void_allocator_t;
494
+ typedef typename dtl::vector_for_small_vector<T, void_allocator_t, Options>::type svhb_type;
495
+
455
496
  static const std::size_t s_align = dtl::alignment_of<Storage>::value;
456
497
  static const std::size_t s_size = sizeof(Storage);
457
498
  static const std::size_t svh_sizeof = sizeof(svh_type);
@@ -478,13 +519,13 @@ template<class Storage>
478
519
  struct small_vector_storage<Storage, 0>
479
520
  {};
480
521
 
481
- template<class Allocator, std::size_t N>
522
+ template<class T, class Allocator, std::size_t N, class Options>
482
523
  struct small_vector_storage_definer
483
524
  {
484
- typedef typename Allocator::value_type value_type;
485
- typedef typename small_vector_base<value_type, Allocator>::storage_type storage_type;
525
+ typedef T value_type;
526
+ typedef typename small_vector_base<value_type, Allocator, Options>::storage_type storage_type;
486
527
  static const std::size_t needed_extra_storages =
487
- small_vector_storage_calculator<storage_type, Allocator, value_type, N>::needed_extra_storages;
528
+ small_vector_storage_calculator<storage_type, Allocator, value_type, N, Options>::needed_extra_storages;
488
529
  typedef small_vector_storage<storage_type, needed_extra_storages> type;
489
530
  };
490
531
 
@@ -494,31 +535,35 @@ struct small_vector_storage_definer
494
535
  //! It contains some preallocated elements in-place, which can avoid the use of dynamic storage allocation
495
536
  //! when the actual number of elements is below that preallocated threshold.
496
537
  //!
497
- //! `small_vector<T, N, Allocator>` is convertible to `small_vector_base<T, Allocator>` that is independent
538
+ //! `small_vector<T, N, Allocator, Options>` is convertible to `small_vector_base<T, Allocator, Options>` that is independent
498
539
  //! from the preallocated element capacity, so client code does not need to be templated on that N argument.
499
540
  //!
500
541
  //! All `boost::container::vector` member functions are inherited. See `vector` documentation for details.
501
542
  //!
502
543
  //! \tparam T The type of object that is stored in the small_vector
503
544
  //! \tparam N The number of preallocated elements stored inside small_vector. It shall be less than Allocator::max_size();
504
- //! \tparam Allocator The allocator used for memory management when the number of elements exceeds N.
505
- template <class T, std::size_t N, class Allocator BOOST_CONTAINER_DOCONLY(= new_allocator<T>) >
506
- class small_vector : public small_vector_base<T, Allocator>
545
+ //! \tparam Allocator The allocator used for memory management when the number of elements exceeds N. Use void
546
+ //! for the default allocator
547
+ //! |tparam Options A type produced from \c boost::container::small_vector_options.
548
+ template <class T, std::size_t N, class Allocator BOOST_CONTAINER_DOCONLY(= void), class Options BOOST_CONTAINER_DOCONLY(= void) >
549
+ class small_vector : public small_vector_base<T, Allocator, Options>
507
550
  #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
508
- , private small_vector_storage_definer<Allocator, N>::type
551
+ , private small_vector_storage_definer<T, Allocator, N, Options>::type
509
552
  #endif
510
553
  {
511
554
  #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
512
- typedef small_vector_base<T, Allocator> base_type;
513
- typedef typename small_vector_storage_definer<Allocator, N>::type remaining_storage_holder;
555
+ typedef small_vector_base<T, Allocator, Options> base_type;
556
+ typedef typename small_vector_storage_definer
557
+ <T, Allocator, N, Options>::type remaining_storage_holder;
514
558
 
515
559
  BOOST_COPYABLE_AND_MOVABLE(small_vector)
516
560
 
517
561
  typedef allocator_traits<typename base_type::allocator_type> allocator_traits_type;
518
562
 
519
563
  public:
520
- typedef small_vector_storage_calculator< typename small_vector_base<T, Allocator>
521
- ::storage_type, Allocator, T, N> storage_test;
564
+ typedef small_vector_storage_calculator
565
+ < typename small_vector_base<T, Allocator, Options>::storage_type
566
+ , Allocator, T, N, Options> storage_test;
522
567
 
523
568
  static const std::size_t needed_extra_storages = storage_test::needed_extra_storages;
524
569
  static const std::size_t needed_bytes = storage_test::needed_bytes;
@@ -539,7 +584,7 @@ class small_vector : public small_vector_base<T, Allocator>
539
584
 
540
585
  public:
541
586
  BOOST_CONTAINER_FORCEINLINE small_vector()
542
- BOOST_NOEXCEPT_IF(dtl::is_nothrow_default_constructible<Allocator>::value)
587
+ BOOST_NOEXCEPT_IF(dtl::is_nothrow_default_constructible<allocator_type>::value)
543
588
  : base_type(initial_capacity_t(), internal_capacity())
544
589
  {}
545
590
 
@@ -608,7 +653,7 @@ class small_vector : public small_vector_base<T, Allocator>
608
653
  { this->move_construct_impl(other, other.get_stored_allocator()); }
609
654
 
610
655
  BOOST_CONTAINER_FORCEINLINE small_vector(BOOST_RV_REF(small_vector) other)
611
- BOOST_NOEXCEPT_IF(boost::container::dtl::is_nothrow_move_assignable<value_type>::value)
656
+ BOOST_NOEXCEPT_IF(boost::container::dtl::is_nothrow_move_constructible<value_type>::value)
612
657
  : base_type(initial_capacity_t(), internal_capacity(), ::boost::move(other.get_stored_allocator()))
613
658
  { this->move_construct_impl(other, other.get_stored_allocator()); }
614
659
 
@@ -80,14 +80,14 @@ template <class C>
80
80
  class clear_on_destroy
81
81
  {
82
82
  public:
83
- clear_on_destroy(C &c)
83
+ BOOST_CONTAINER_FORCEINLINE clear_on_destroy(C &c)
84
84
  : c_(c), do_clear_(true)
85
85
  {}
86
86
 
87
- void release()
87
+ BOOST_CONTAINER_FORCEINLINE void release()
88
88
  { do_clear_ = false; }
89
89
 
90
- ~clear_on_destroy()
90
+ BOOST_CONTAINER_FORCEINLINE ~clear_on_destroy()
91
91
  {
92
92
  if(do_clear_){
93
93
  c_.clear();
@@ -121,11 +121,11 @@ struct node_base
121
121
  <node_base_ptr>::type node_base_ptr_ptr;
122
122
 
123
123
  public:
124
- explicit node_base(const node_base_ptr_ptr &n)
124
+ BOOST_CONTAINER_FORCEINLINE explicit node_base(const node_base_ptr_ptr &n)
125
125
  : up(n)
126
126
  {}
127
127
 
128
- node_base()
128
+ BOOST_CONTAINER_FORCEINLINE node_base()
129
129
  : up()
130
130
  {}
131
131
 
@@ -220,7 +220,7 @@ struct index_traits
220
220
  // Node cache first is *(this->index.end() - 2);
221
221
  // Node cache last is this->index.back();
222
222
 
223
- static node_base_ptr_ptr ptr_to_node_base_ptr(node_base_ptr &n)
223
+ BOOST_CONTAINER_FORCEINLINE static node_base_ptr_ptr ptr_to_node_base_ptr(node_base_ptr &n)
224
224
  { return node_base_ptr_ptr_traits::pointer_to(n); }
225
225
 
226
226
  static void fix_up_pointers(index_iterator first, index_iterator last)
@@ -233,10 +233,10 @@ struct index_traits
233
233
  }
234
234
  }
235
235
 
236
- static index_iterator get_fix_up_end(index_type &index)
236
+ BOOST_CONTAINER_FORCEINLINE static index_iterator get_fix_up_end(index_type &index)
237
237
  { return index.end() - (ExtraPointers - 1); }
238
238
 
239
- static void fix_up_pointers_from(index_type & index, index_iterator first)
239
+ BOOST_CONTAINER_FORCEINLINE static void fix_up_pointers_from(index_type & index, index_iterator first)
240
240
  { index_traits::fix_up_pointers(first, index_traits::get_fix_up_end(index)); }
241
241
 
242
242
  static void readjust_end_node(index_type &index, node_base_type &end_node)
@@ -298,7 +298,6 @@ class stable_vector_iterator
298
298
  typedef boost::intrusive::pointer_traits<pointer> ptr_traits;
299
299
  typedef typename ptr_traits::reference reference;
300
300
 
301
- private:
302
301
  typedef typename non_const_ptr_traits::template
303
302
  rebind_pointer<void>::type void_ptr;
304
303
  typedef stable_vector_detail::node<Pointer> node_type;
@@ -312,119 +311,150 @@ class stable_vector_iterator
312
311
  typedef typename non_const_ptr_traits::template
313
312
  rebind_pointer<node_base_ptr>::type node_base_ptr_ptr;
314
313
 
314
+ class nat
315
+ {
316
+ public:
317
+ node_base_ptr node_pointer() const
318
+ { return node_base_ptr(); }
319
+ };
320
+ typedef typename dtl::if_c< IsConst
321
+ , stable_vector_iterator<Pointer, false>
322
+ , nat>::type nonconst_iterator;
323
+
315
324
  node_base_ptr m_pn;
316
325
 
317
326
  public:
318
327
 
319
- explicit stable_vector_iterator(node_base_ptr p) BOOST_NOEXCEPT_OR_NOTHROW
328
+ BOOST_CONTAINER_FORCEINLINE explicit stable_vector_iterator(node_base_ptr p) BOOST_NOEXCEPT_OR_NOTHROW
320
329
  : m_pn(p)
321
330
  {}
322
331
 
323
- stable_vector_iterator() BOOST_NOEXCEPT_OR_NOTHROW
332
+ BOOST_CONTAINER_FORCEINLINE stable_vector_iterator() BOOST_NOEXCEPT_OR_NOTHROW
324
333
  : m_pn() //Value initialization to achieve "null iterators" (N3644)
325
334
  {}
326
335
 
327
- stable_vector_iterator(stable_vector_iterator<Pointer, false> const& other) BOOST_NOEXCEPT_OR_NOTHROW
336
+ BOOST_CONTAINER_FORCEINLINE stable_vector_iterator(const stable_vector_iterator& other) BOOST_NOEXCEPT_OR_NOTHROW
337
+ : m_pn(other.node_pointer())
338
+ {}
339
+
340
+ BOOST_CONTAINER_FORCEINLINE stable_vector_iterator(const nonconst_iterator& other) BOOST_NOEXCEPT_OR_NOTHROW
328
341
  : m_pn(other.node_pointer())
329
342
  {}
330
343
 
331
- node_ptr node_pointer() const BOOST_NOEXCEPT_OR_NOTHROW
344
+ BOOST_CONTAINER_FORCEINLINE stable_vector_iterator & operator=(const stable_vector_iterator& other) BOOST_NOEXCEPT_OR_NOTHROW
345
+ { m_pn = other.node_pointer(); return *this; }
346
+
347
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
348
+ node_ptr node_pointer() const BOOST_NOEXCEPT_OR_NOTHROW
332
349
  { return node_ptr_traits::static_cast_from(m_pn); }
333
350
 
334
351
  public:
335
352
  //Pointer like operators
336
- reference operator*() const BOOST_NOEXCEPT_OR_NOTHROW
353
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
354
+ reference operator*() const BOOST_NOEXCEPT_OR_NOTHROW
337
355
  { return node_pointer()->get_data(); }
338
356
 
339
- pointer operator->() const BOOST_NOEXCEPT_OR_NOTHROW
357
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
358
+ pointer operator->() const BOOST_NOEXCEPT_OR_NOTHROW
340
359
  { return ptr_traits::pointer_to(this->operator*()); }
341
360
 
342
361
  //Increment / Decrement
343
- stable_vector_iterator& operator++() BOOST_NOEXCEPT_OR_NOTHROW
362
+ BOOST_CONTAINER_FORCEINLINE stable_vector_iterator& operator++() BOOST_NOEXCEPT_OR_NOTHROW
344
363
  {
345
364
  node_base_ptr_ptr p(this->m_pn->up);
346
365
  this->m_pn = *(++p);
347
366
  return *this;
348
367
  }
349
368
 
350
- stable_vector_iterator operator++(int) BOOST_NOEXCEPT_OR_NOTHROW
369
+ BOOST_CONTAINER_FORCEINLINE stable_vector_iterator operator++(int) BOOST_NOEXCEPT_OR_NOTHROW
351
370
  { stable_vector_iterator tmp(*this); ++*this; return stable_vector_iterator(tmp); }
352
371
 
353
- stable_vector_iterator& operator--() BOOST_NOEXCEPT_OR_NOTHROW
372
+ BOOST_CONTAINER_FORCEINLINE stable_vector_iterator& operator--() BOOST_NOEXCEPT_OR_NOTHROW
354
373
  {
355
374
  node_base_ptr_ptr p(this->m_pn->up);
356
375
  this->m_pn = *(--p);
357
376
  return *this;
358
377
  }
359
378
 
360
- stable_vector_iterator operator--(int) BOOST_NOEXCEPT_OR_NOTHROW
379
+ BOOST_CONTAINER_FORCEINLINE stable_vector_iterator operator--(int) BOOST_NOEXCEPT_OR_NOTHROW
361
380
  { stable_vector_iterator tmp(*this); --*this; return stable_vector_iterator(tmp); }
362
381
 
363
- reference operator[](difference_type off) const BOOST_NOEXCEPT_OR_NOTHROW
382
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
383
+ reference operator[](difference_type off) const BOOST_NOEXCEPT_OR_NOTHROW
364
384
  { return node_ptr_traits::static_cast_from(this->m_pn->up[off])->get_data(); }
365
385
 
366
- stable_vector_iterator& operator+=(difference_type off) BOOST_NOEXCEPT_OR_NOTHROW
386
+ BOOST_CONTAINER_FORCEINLINE stable_vector_iterator& operator+=(difference_type off) BOOST_NOEXCEPT_OR_NOTHROW
367
387
  {
368
388
  if(off) this->m_pn = this->m_pn->up[off];
369
389
  return *this;
370
390
  }
371
391
 
372
- friend stable_vector_iterator operator+(const stable_vector_iterator &left, difference_type off) BOOST_NOEXCEPT_OR_NOTHROW
392
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
393
+ friend stable_vector_iterator operator+(const stable_vector_iterator &left, difference_type off) BOOST_NOEXCEPT_OR_NOTHROW
373
394
  {
374
395
  stable_vector_iterator tmp(left);
375
396
  tmp += off;
376
397
  return tmp;
377
398
  }
378
399
 
379
- friend stable_vector_iterator operator+(difference_type off, const stable_vector_iterator& right) BOOST_NOEXCEPT_OR_NOTHROW
400
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
401
+ friend stable_vector_iterator operator+(difference_type off, const stable_vector_iterator& right) BOOST_NOEXCEPT_OR_NOTHROW
380
402
  {
381
403
  stable_vector_iterator tmp(right);
382
404
  tmp += off;
383
405
  return tmp;
384
406
  }
385
407
 
386
- stable_vector_iterator& operator-=(difference_type off) BOOST_NOEXCEPT_OR_NOTHROW
408
+ BOOST_CONTAINER_FORCEINLINE stable_vector_iterator& operator-=(difference_type off) BOOST_NOEXCEPT_OR_NOTHROW
387
409
  { *this += -off; return *this; }
388
410
 
389
- friend stable_vector_iterator operator-(const stable_vector_iterator &left, difference_type off) BOOST_NOEXCEPT_OR_NOTHROW
411
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
412
+ friend stable_vector_iterator operator-(const stable_vector_iterator &left, difference_type off) BOOST_NOEXCEPT_OR_NOTHROW
390
413
  {
391
414
  stable_vector_iterator tmp(left);
392
415
  tmp -= off;
393
416
  return tmp;
394
417
  }
395
418
 
396
- friend difference_type operator-(const stable_vector_iterator &left, const stable_vector_iterator &right) BOOST_NOEXCEPT_OR_NOTHROW
419
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
420
+ friend difference_type operator-(const stable_vector_iterator &left, const stable_vector_iterator &right) BOOST_NOEXCEPT_OR_NOTHROW
397
421
  { return left.m_pn->up - right.m_pn->up; }
398
422
 
399
423
  //Comparison operators
400
- friend bool operator== (const stable_vector_iterator& l, const stable_vector_iterator& r) BOOST_NOEXCEPT_OR_NOTHROW
424
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
425
+ friend bool operator== (const stable_vector_iterator& l, const stable_vector_iterator& r) BOOST_NOEXCEPT_OR_NOTHROW
401
426
  { return l.m_pn == r.m_pn; }
402
427
 
403
- friend bool operator!= (const stable_vector_iterator& l, const stable_vector_iterator& r) BOOST_NOEXCEPT_OR_NOTHROW
428
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
429
+ friend bool operator!= (const stable_vector_iterator& l, const stable_vector_iterator& r) BOOST_NOEXCEPT_OR_NOTHROW
404
430
  { return l.m_pn != r.m_pn; }
405
431
 
406
- friend bool operator< (const stable_vector_iterator& l, const stable_vector_iterator& r) BOOST_NOEXCEPT_OR_NOTHROW
432
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
433
+ friend bool operator< (const stable_vector_iterator& l, const stable_vector_iterator& r) BOOST_NOEXCEPT_OR_NOTHROW
407
434
  { return l.m_pn->up < r.m_pn->up; }
408
435
 
409
- friend bool operator<= (const stable_vector_iterator& l, const stable_vector_iterator& r) BOOST_NOEXCEPT_OR_NOTHROW
436
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
437
+ friend bool operator<= (const stable_vector_iterator& l, const stable_vector_iterator& r) BOOST_NOEXCEPT_OR_NOTHROW
410
438
  { return l.m_pn->up <= r.m_pn->up; }
411
439
 
412
- friend bool operator> (const stable_vector_iterator& l, const stable_vector_iterator& r) BOOST_NOEXCEPT_OR_NOTHROW
440
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
441
+ friend bool operator> (const stable_vector_iterator& l, const stable_vector_iterator& r) BOOST_NOEXCEPT_OR_NOTHROW
413
442
  { return l.m_pn->up > r.m_pn->up; }
414
443
 
415
- friend bool operator>= (const stable_vector_iterator& l, const stable_vector_iterator& r) BOOST_NOEXCEPT_OR_NOTHROW
444
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
445
+ friend bool operator>= (const stable_vector_iterator& l, const stable_vector_iterator& r) BOOST_NOEXCEPT_OR_NOTHROW
416
446
  { return l.m_pn->up >= r.m_pn->up; }
417
447
  };
418
448
 
419
449
  #if defined(STABLE_VECTOR_ENABLE_INVARIANT_CHECKING)
420
450
 
421
- #define STABLE_VECTOR_CHECK_INVARIANT \
451
+ #define BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT \
422
452
  invariant_checker BOOST_JOIN(check_invariant_,__LINE__)(*this); \
423
453
  BOOST_JOIN(check_invariant_,__LINE__).touch();
424
454
 
425
455
  #else //STABLE_VECTOR_ENABLE_INVARIANT_CHECKING
426
456
 
427
- #define STABLE_VECTOR_CHECK_INVARIANT
457
+ #define BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT
428
458
 
429
459
  #endif //#if defined(STABLE_VECTOR_ENABLE_INVARIANT_CHECKING)
430
460
 
@@ -465,14 +495,15 @@ class stable_vector_iterator
465
495
  //! \tparam T The type of object that is stored in the stable_vector
466
496
  //! \tparam Allocator The allocator used for all internal memory management
467
497
  #ifdef BOOST_CONTAINER_DOXYGEN_INVOKED
468
- template <class T, class Allocator = new_allocator<T> >
498
+ template <class T, class Allocator = void >
469
499
  #else
470
500
  template <class T, class Allocator>
471
501
  #endif
472
502
  class stable_vector
473
503
  {
474
504
  #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
475
- typedef allocator_traits<Allocator> allocator_traits_type;
505
+ typedef typename real_allocator<T, Allocator>::type ValueAllocator;
506
+ typedef allocator_traits<ValueAllocator> allocator_traits_type;
476
507
  typedef boost::intrusive::
477
508
  pointer_traits
478
509
  <typename allocator_traits_type::pointer> ptr_traits;
@@ -510,7 +541,7 @@ class stable_vector
510
541
 
511
542
  typedef ::boost::container::dtl::integral_constant
512
543
  <unsigned, boost::container::dtl::
513
- version<Allocator>::value> alloc_version;
544
+ version<ValueAllocator>::value> alloc_version;
514
545
  typedef typename allocator_traits_type::
515
546
  template portable_rebind_alloc
516
547
  <node_type>::type node_allocator_type;
@@ -519,24 +550,24 @@ class stable_vector
519
550
  allocator_version_traits<node_allocator_type> allocator_version_traits_t;
520
551
  typedef typename allocator_version_traits_t::multiallocation_chain multiallocation_chain;
521
552
 
522
- node_ptr allocate_one()
553
+ BOOST_CONTAINER_FORCEINLINE node_ptr allocate_one()
523
554
  { return allocator_version_traits_t::allocate_one(this->priv_node_alloc()); }
524
555
 
525
- void deallocate_one(const node_ptr &p)
556
+ BOOST_CONTAINER_FORCEINLINE void deallocate_one(const node_ptr &p)
526
557
  { allocator_version_traits_t::deallocate_one(this->priv_node_alloc(), p); }
527
558
 
528
- void allocate_individual(typename allocator_traits_type::size_type n, multiallocation_chain &m)
559
+ BOOST_CONTAINER_FORCEINLINE void allocate_individual(typename allocator_traits_type::size_type n, multiallocation_chain &m)
529
560
  { allocator_version_traits_t::allocate_individual(this->priv_node_alloc(), n, m); }
530
561
 
531
- void deallocate_individual(multiallocation_chain &holder)
562
+ BOOST_CONTAINER_FORCEINLINE void deallocate_individual(multiallocation_chain &holder)
532
563
  { allocator_version_traits_t::deallocate_individual(this->priv_node_alloc(), holder); }
533
564
 
534
565
  friend class stable_vector_detail::clear_on_destroy<stable_vector>;
535
566
  typedef stable_vector_iterator
536
- < typename allocator_traits<Allocator>::pointer
567
+ < typename allocator_traits<ValueAllocator>::pointer
537
568
  , false> iterator_impl;
538
569
  typedef stable_vector_iterator
539
- < typename allocator_traits<Allocator>::pointer
570
+ < typename allocator_traits<ValueAllocator>::pointer
540
571
  , true> const_iterator_impl;
541
572
  #endif //#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
542
573
  public:
@@ -547,13 +578,13 @@ class stable_vector
547
578
  //
548
579
  //////////////////////////////////////////////
549
580
  typedef T value_type;
550
- typedef typename ::boost::container::allocator_traits<Allocator>::pointer pointer;
551
- typedef typename ::boost::container::allocator_traits<Allocator>::const_pointer const_pointer;
552
- typedef typename ::boost::container::allocator_traits<Allocator>::reference reference;
553
- typedef typename ::boost::container::allocator_traits<Allocator>::const_reference const_reference;
554
- typedef typename ::boost::container::allocator_traits<Allocator>::size_type size_type;
555
- typedef typename ::boost::container::allocator_traits<Allocator>::difference_type difference_type;
556
- typedef Allocator allocator_type;
581
+ typedef typename ::boost::container::allocator_traits<ValueAllocator>::pointer pointer;
582
+ typedef typename ::boost::container::allocator_traits<ValueAllocator>::const_pointer const_pointer;
583
+ typedef typename ::boost::container::allocator_traits<ValueAllocator>::reference reference;
584
+ typedef typename ::boost::container::allocator_traits<ValueAllocator>::const_reference const_reference;
585
+ typedef typename ::boost::container::allocator_traits<ValueAllocator>::size_type size_type;
586
+ typedef typename ::boost::container::allocator_traits<ValueAllocator>::difference_type difference_type;
587
+ typedef ValueAllocator allocator_type;
557
588
  typedef node_allocator_type stored_allocator_type;
558
589
  typedef BOOST_CONTAINER_IMPDEF(iterator_impl) iterator;
559
590
  typedef BOOST_CONTAINER_IMPDEF(const_iterator_impl) const_iterator;
@@ -584,10 +615,10 @@ class stable_vector
584
615
  //! <b>Throws</b>: If allocator_type's default constructor throws.
585
616
  //!
586
617
  //! <b>Complexity</b>: Constant.
587
- stable_vector() BOOST_NOEXCEPT_IF(dtl::is_nothrow_default_constructible<Allocator>::value)
618
+ BOOST_CONTAINER_FORCEINLINE stable_vector() BOOST_NOEXCEPT_IF(dtl::is_nothrow_default_constructible<ValueAllocator>::value)
588
619
  : internal_data(), index()
589
620
  {
590
- STABLE_VECTOR_CHECK_INVARIANT;
621
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
591
622
  }
592
623
 
593
624
  //! <b>Effects</b>: Constructs a stable_vector taking the allocator as parameter.
@@ -595,10 +626,10 @@ class stable_vector
595
626
  //! <b>Throws</b>: Nothing
596
627
  //!
597
628
  //! <b>Complexity</b>: Constant.
598
- explicit stable_vector(const allocator_type& al) BOOST_NOEXCEPT_OR_NOTHROW
629
+ BOOST_CONTAINER_FORCEINLINE explicit stable_vector(const allocator_type& al) BOOST_NOEXCEPT_OR_NOTHROW
599
630
  : internal_data(al), index(al)
600
631
  {
601
- STABLE_VECTOR_CHECK_INVARIANT;
632
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
602
633
  }
603
634
 
604
635
  //! <b>Effects</b>: Constructs a stable_vector
@@ -613,7 +644,7 @@ class stable_vector
613
644
  {
614
645
  stable_vector_detail::clear_on_destroy<stable_vector> cod(*this);
615
646
  this->resize(n);
616
- STABLE_VECTOR_CHECK_INVARIANT;
647
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
617
648
  cod.release();
618
649
  }
619
650
 
@@ -631,7 +662,7 @@ class stable_vector
631
662
  {
632
663
  stable_vector_detail::clear_on_destroy<stable_vector> cod(*this);
633
664
  this->resize(n, default_init);
634
- STABLE_VECTOR_CHECK_INVARIANT;
665
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
635
666
  cod.release();
636
667
  }
637
668
 
@@ -647,7 +678,7 @@ class stable_vector
647
678
  {
648
679
  stable_vector_detail::clear_on_destroy<stable_vector> cod(*this);
649
680
  this->resize(n);
650
- STABLE_VECTOR_CHECK_INVARIANT;
681
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
651
682
  cod.release();
652
683
  }
653
684
 
@@ -665,7 +696,7 @@ class stable_vector
665
696
  {
666
697
  stable_vector_detail::clear_on_destroy<stable_vector> cod(*this);
667
698
  this->resize(n, default_init);
668
- STABLE_VECTOR_CHECK_INVARIANT;
699
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
669
700
  cod.release();
670
701
  }
671
702
 
@@ -681,7 +712,7 @@ class stable_vector
681
712
  {
682
713
  stable_vector_detail::clear_on_destroy<stable_vector> cod(*this);
683
714
  this->insert(this->cend(), n, t);
684
- STABLE_VECTOR_CHECK_INVARIANT;
715
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
685
716
  cod.release();
686
717
  }
687
718
 
@@ -698,7 +729,7 @@ class stable_vector
698
729
  {
699
730
  stable_vector_detail::clear_on_destroy<stable_vector> cod(*this);
700
731
  this->insert(this->cend(), first, last);
701
- STABLE_VECTOR_CHECK_INVARIANT;
732
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
702
733
  cod.release();
703
734
  }
704
735
 
@@ -715,7 +746,7 @@ class stable_vector
715
746
  {
716
747
  stable_vector_detail::clear_on_destroy<stable_vector> cod(*this);
717
748
  this->insert(this->cend(), x.begin(), x.end());
718
- STABLE_VECTOR_CHECK_INVARIANT;
749
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
719
750
  cod.release();
720
751
  }
721
752
 
@@ -732,7 +763,7 @@ class stable_vector
732
763
  {
733
764
  stable_vector_detail::clear_on_destroy<stable_vector> cod(*this);
734
765
  insert(cend(), il.begin(), il.end());
735
- STABLE_VECTOR_CHECK_INVARIANT;
766
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
736
767
  cod.release();
737
768
  }
738
769
  #endif
@@ -742,7 +773,7 @@ class stable_vector
742
773
  //! <b>Throws</b>: If allocator_type's copy constructor throws.
743
774
  //!
744
775
  //! <b>Complexity</b>: Constant.
745
- stable_vector(BOOST_RV_REF(stable_vector) x) BOOST_NOEXCEPT_OR_NOTHROW
776
+ BOOST_CONTAINER_FORCEINLINE stable_vector(BOOST_RV_REF(stable_vector) x) BOOST_NOEXCEPT_OR_NOTHROW
746
777
  : internal_data(boost::move(x.priv_node_alloc())), index(boost::move(x.index))
747
778
  {
748
779
  this->priv_swap_members(x);
@@ -758,7 +789,7 @@ class stable_vector
758
789
  {
759
790
  stable_vector_detail::clear_on_destroy<stable_vector> cod(*this);
760
791
  this->insert(this->cend(), x.begin(), x.end());
761
- STABLE_VECTOR_CHECK_INVARIANT;
792
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
762
793
  cod.release();
763
794
  }
764
795
 
@@ -778,7 +809,7 @@ class stable_vector
778
809
  else{
779
810
  stable_vector_detail::clear_on_destroy<stable_vector> cod(*this);
780
811
  this->insert(this->cend(), boost::make_move_iterator(x.begin()), boost::make_move_iterator(x.end()));
781
- STABLE_VECTOR_CHECK_INVARIANT;
812
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
782
813
  cod.release();
783
814
  }
784
815
  }
@@ -805,8 +836,8 @@ class stable_vector
805
836
  //! <b>Complexity</b>: Linear to the number of elements in x.
806
837
  stable_vector& operator=(BOOST_COPY_ASSIGN_REF(stable_vector) x)
807
838
  {
808
- STABLE_VECTOR_CHECK_INVARIANT;
809
- if (&x != this){
839
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
840
+ if (BOOST_LIKELY(this != &x)) {
810
841
  node_allocator_type &this_alloc = this->priv_node_alloc();
811
842
  const node_allocator_type &x_alloc = x.priv_node_alloc();
812
843
  dtl::bool_<allocator_traits_type::
@@ -838,29 +869,30 @@ class stable_vector
838
869
  || allocator_traits_type::is_always_equal::value)
839
870
  {
840
871
  //for move constructor, no aliasing (&x != this) is assumed.
841
- BOOST_ASSERT(this != &x);
842
- node_allocator_type &this_alloc = this->priv_node_alloc();
843
- node_allocator_type &x_alloc = x.priv_node_alloc();
844
- const bool propagate_alloc = allocator_traits_type::
845
- propagate_on_container_move_assignment::value;
846
- dtl::bool_<propagate_alloc> flag;
847
- const bool allocators_equal = this_alloc == x_alloc; (void)allocators_equal;
848
- //Resources can be transferred if both allocators are
849
- //going to be equal after this function (either propagated or already equal)
850
- if(propagate_alloc || allocators_equal){
851
- STABLE_VECTOR_CHECK_INVARIANT
852
- //Destroy objects but retain memory in case x reuses it in the future
853
- this->clear();
854
- //Move allocator if needed
855
- dtl::move_alloc(this_alloc, x_alloc, flag);
856
- //Take resources
857
- this->index.swap(x.index);
858
- this->priv_swap_members(x);
859
- }
860
- //Else do a one by one move
861
- else{
862
- this->assign( boost::make_move_iterator(x.begin())
863
- , boost::make_move_iterator(x.end()));
872
+ if (BOOST_LIKELY(this != &x)) {
873
+ node_allocator_type &this_alloc = this->priv_node_alloc();
874
+ node_allocator_type &x_alloc = x.priv_node_alloc();
875
+ const bool propagate_alloc = allocator_traits_type::
876
+ propagate_on_container_move_assignment::value;
877
+ dtl::bool_<propagate_alloc> flag;
878
+ const bool allocators_equal = this_alloc == x_alloc; (void)allocators_equal;
879
+ //Resources can be transferred if both allocators are
880
+ //going to be equal after this function (either propagated or already equal)
881
+ if(propagate_alloc || allocators_equal){
882
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT
883
+ //Destroy objects but retain memory in case x reuses it in the future
884
+ this->clear();
885
+ //Move allocator if needed
886
+ dtl::move_alloc(this_alloc, x_alloc, flag);
887
+ //Take resources
888
+ this->index.swap(x.index);
889
+ this->priv_swap_members(x);
890
+ }
891
+ //Else do a one by one move
892
+ else{
893
+ this->assign( boost::make_move_iterator(x.begin())
894
+ , boost::make_move_iterator(x.end()));
895
+ }
864
896
  }
865
897
  return *this;
866
898
  }
@@ -871,7 +903,7 @@ class stable_vector
871
903
  //! <b>Complexity</b>: Linear to the range [il.begin(), il.end()).
872
904
  stable_vector& operator=(std::initializer_list<value_type> il)
873
905
  {
874
- STABLE_VECTOR_CHECK_INVARIANT;
906
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
875
907
  assign(il.begin(), il.end());
876
908
  return *this;
877
909
  }
@@ -882,7 +914,7 @@ class stable_vector
882
914
  //! <b>Throws</b>: If memory allocation throws or T's copy constructor throws.
883
915
  //!
884
916
  //! <b>Complexity</b>: Linear to n.
885
- void assign(size_type n, const T& t)
917
+ BOOST_CONTAINER_FORCEINLINE void assign(size_type n, const T& t)
886
918
  {
887
919
  typedef constant_iterator<value_type, difference_type> cvalue_iterator;
888
920
  this->assign(cvalue_iterator(t, n), cvalue_iterator());
@@ -902,7 +934,7 @@ class stable_vector
902
934
  #endif
903
935
  assign(InputIterator first,InputIterator last)
904
936
  {
905
- STABLE_VECTOR_CHECK_INVARIANT;
937
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
906
938
  iterator first1 = this->begin();
907
939
  iterator last1 = this->end();
908
940
  for ( ; first1 != last1 && first != last; ++first1, ++first)
@@ -921,9 +953,9 @@ class stable_vector
921
953
  //! <b>Throws</b>: If memory allocation throws or
922
954
  //! T's constructor from dereferencing initializer_list iterator throws.
923
955
  //!
924
- void assign(std::initializer_list<value_type> il)
956
+ BOOST_CONTAINER_FORCEINLINE void assign(std::initializer_list<value_type> il)
925
957
  {
926
- STABLE_VECTOR_CHECK_INVARIANT;
958
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
927
959
  assign(il.begin(), il.end());
928
960
  }
929
961
  #endif
@@ -933,7 +965,8 @@ class stable_vector
933
965
  //! <b>Throws</b>: If allocator's copy constructor throws.
934
966
  //!
935
967
  //! <b>Complexity</b>: Constant.
936
- allocator_type get_allocator() const
968
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
969
+ allocator_type get_allocator() const
937
970
  { return this->priv_node_alloc(); }
938
971
 
939
972
  //! <b>Effects</b>: Returns a reference to the internal allocator.
@@ -943,7 +976,8 @@ class stable_vector
943
976
  //! <b>Complexity</b>: Constant.
944
977
  //!
945
978
  //! <b>Note</b>: Non-standard extension.
946
- const stored_allocator_type &get_stored_allocator() const BOOST_NOEXCEPT_OR_NOTHROW
979
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
980
+ const stored_allocator_type &get_stored_allocator() const BOOST_NOEXCEPT_OR_NOTHROW
947
981
  { return this->priv_node_alloc(); }
948
982
 
949
983
  //! <b>Effects</b>: Returns a reference to the internal allocator.
@@ -953,7 +987,8 @@ class stable_vector
953
987
  //! <b>Complexity</b>: Constant.
954
988
  //!
955
989
  //! <b>Note</b>: Non-standard extension.
956
- stored_allocator_type &get_stored_allocator() BOOST_NOEXCEPT_OR_NOTHROW
990
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
991
+ stored_allocator_type &get_stored_allocator() BOOST_NOEXCEPT_OR_NOTHROW
957
992
  { return this->priv_node_alloc(); }
958
993
 
959
994
  //////////////////////////////////////////////
@@ -967,7 +1002,8 @@ class stable_vector
967
1002
  //! <b>Throws</b>: Nothing.
968
1003
  //!
969
1004
  //! <b>Complexity</b>: Constant.
970
- iterator begin() BOOST_NOEXCEPT_OR_NOTHROW
1005
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1006
+ iterator begin() BOOST_NOEXCEPT_OR_NOTHROW
971
1007
  { return (this->index.empty()) ? this->end(): iterator(node_ptr_traits::static_cast_from(this->index.front())); }
972
1008
 
973
1009
  //! <b>Effects</b>: Returns a const_iterator to the first element contained in the stable_vector.
@@ -975,7 +1011,8 @@ class stable_vector
975
1011
  //! <b>Throws</b>: Nothing.
976
1012
  //!
977
1013
  //! <b>Complexity</b>: Constant.
978
- const_iterator begin() const BOOST_NOEXCEPT_OR_NOTHROW
1014
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1015
+ const_iterator begin() const BOOST_NOEXCEPT_OR_NOTHROW
979
1016
  { return (this->index.empty()) ? this->cend() : const_iterator(node_ptr_traits::static_cast_from(this->index.front())) ; }
980
1017
 
981
1018
  //! <b>Effects</b>: Returns an iterator to the end of the stable_vector.
@@ -983,7 +1020,8 @@ class stable_vector
983
1020
  //! <b>Throws</b>: Nothing.
984
1021
  //!
985
1022
  //! <b>Complexity</b>: Constant.
986
- iterator end() BOOST_NOEXCEPT_OR_NOTHROW
1023
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1024
+ iterator end() BOOST_NOEXCEPT_OR_NOTHROW
987
1025
  { return iterator(this->priv_get_end_node()); }
988
1026
 
989
1027
  //! <b>Effects</b>: Returns a const_iterator to the end of the stable_vector.
@@ -991,7 +1029,8 @@ class stable_vector
991
1029
  //! <b>Throws</b>: Nothing.
992
1030
  //!
993
1031
  //! <b>Complexity</b>: Constant.
994
- const_iterator end() const BOOST_NOEXCEPT_OR_NOTHROW
1032
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1033
+ const_iterator end() const BOOST_NOEXCEPT_OR_NOTHROW
995
1034
  { return const_iterator(this->priv_get_end_node()); }
996
1035
 
997
1036
  //! <b>Effects</b>: Returns a reverse_iterator pointing to the beginning
@@ -1000,7 +1039,8 @@ class stable_vector
1000
1039
  //! <b>Throws</b>: Nothing.
1001
1040
  //!
1002
1041
  //! <b>Complexity</b>: Constant.
1003
- reverse_iterator rbegin() BOOST_NOEXCEPT_OR_NOTHROW
1042
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1043
+ reverse_iterator rbegin() BOOST_NOEXCEPT_OR_NOTHROW
1004
1044
  { return reverse_iterator(this->end()); }
1005
1045
 
1006
1046
  //! <b>Effects</b>: Returns a const_reverse_iterator pointing to the beginning
@@ -1009,7 +1049,8 @@ class stable_vector
1009
1049
  //! <b>Throws</b>: Nothing.
1010
1050
  //!
1011
1051
  //! <b>Complexity</b>: Constant.
1012
- const_reverse_iterator rbegin() const BOOST_NOEXCEPT_OR_NOTHROW
1052
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1053
+ const_reverse_iterator rbegin() const BOOST_NOEXCEPT_OR_NOTHROW
1013
1054
  { return const_reverse_iterator(this->end()); }
1014
1055
 
1015
1056
  //! <b>Effects</b>: Returns a reverse_iterator pointing to the end
@@ -1018,7 +1059,8 @@ class stable_vector
1018
1059
  //! <b>Throws</b>: Nothing.
1019
1060
  //!
1020
1061
  //! <b>Complexity</b>: Constant.
1021
- reverse_iterator rend() BOOST_NOEXCEPT_OR_NOTHROW
1062
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1063
+ reverse_iterator rend() BOOST_NOEXCEPT_OR_NOTHROW
1022
1064
  { return reverse_iterator(this->begin()); }
1023
1065
 
1024
1066
  //! <b>Effects</b>: Returns a const_reverse_iterator pointing to the end
@@ -1027,7 +1069,8 @@ class stable_vector
1027
1069
  //! <b>Throws</b>: Nothing.
1028
1070
  //!
1029
1071
  //! <b>Complexity</b>: Constant.
1030
- const_reverse_iterator rend() const BOOST_NOEXCEPT_OR_NOTHROW
1072
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1073
+ const_reverse_iterator rend() const BOOST_NOEXCEPT_OR_NOTHROW
1031
1074
  { return const_reverse_iterator(this->begin()); }
1032
1075
 
1033
1076
  //! <b>Effects</b>: Returns a const_iterator to the first element contained in the stable_vector.
@@ -1035,7 +1078,8 @@ class stable_vector
1035
1078
  //! <b>Throws</b>: Nothing.
1036
1079
  //!
1037
1080
  //! <b>Complexity</b>: Constant.
1038
- const_iterator cbegin() const BOOST_NOEXCEPT_OR_NOTHROW
1081
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1082
+ const_iterator cbegin() const BOOST_NOEXCEPT_OR_NOTHROW
1039
1083
  { return this->begin(); }
1040
1084
 
1041
1085
  //! <b>Effects</b>: Returns a const_iterator to the end of the stable_vector.
@@ -1043,7 +1087,8 @@ class stable_vector
1043
1087
  //! <b>Throws</b>: Nothing.
1044
1088
  //!
1045
1089
  //! <b>Complexity</b>: Constant.
1046
- const_iterator cend() const BOOST_NOEXCEPT_OR_NOTHROW
1090
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1091
+ const_iterator cend() const BOOST_NOEXCEPT_OR_NOTHROW
1047
1092
  { return this->end(); }
1048
1093
 
1049
1094
  //! <b>Effects</b>: Returns a const_reverse_iterator pointing to the beginning
@@ -1052,7 +1097,8 @@ class stable_vector
1052
1097
  //! <b>Throws</b>: Nothing.
1053
1098
  //!
1054
1099
  //! <b>Complexity</b>: Constant.
1055
- const_reverse_iterator crbegin() const BOOST_NOEXCEPT_OR_NOTHROW
1100
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1101
+ const_reverse_iterator crbegin() const BOOST_NOEXCEPT_OR_NOTHROW
1056
1102
  { return this->rbegin(); }
1057
1103
 
1058
1104
  //! <b>Effects</b>: Returns a const_reverse_iterator pointing to the end
@@ -1061,7 +1107,8 @@ class stable_vector
1061
1107
  //! <b>Throws</b>: Nothing.
1062
1108
  //!
1063
1109
  //! <b>Complexity</b>: Constant.
1064
- const_reverse_iterator crend()const BOOST_NOEXCEPT_OR_NOTHROW
1110
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1111
+ const_reverse_iterator crend()const BOOST_NOEXCEPT_OR_NOTHROW
1065
1112
  { return this->rend(); }
1066
1113
 
1067
1114
  //////////////////////////////////////////////
@@ -1075,7 +1122,8 @@ class stable_vector
1075
1122
  //! <b>Throws</b>: Nothing.
1076
1123
  //!
1077
1124
  //! <b>Complexity</b>: Constant.
1078
- bool empty() const BOOST_NOEXCEPT_OR_NOTHROW
1125
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1126
+ bool empty() const BOOST_NOEXCEPT_OR_NOTHROW
1079
1127
  { return this->index.size() <= ExtraPointers; }
1080
1128
 
1081
1129
  //! <b>Effects</b>: Returns the number of the elements contained in the stable_vector.
@@ -1083,7 +1131,8 @@ class stable_vector
1083
1131
  //! <b>Throws</b>: Nothing.
1084
1132
  //!
1085
1133
  //! <b>Complexity</b>: Constant.
1086
- size_type size() const BOOST_NOEXCEPT_OR_NOTHROW
1134
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1135
+ size_type size() const BOOST_NOEXCEPT_OR_NOTHROW
1087
1136
  {
1088
1137
  const size_type index_size = this->index.size();
1089
1138
  return (index_size - ExtraPointers) & (size_type(0u) -size_type(index_size != 0));
@@ -1094,7 +1143,8 @@ class stable_vector
1094
1143
  //! <b>Throws</b>: Nothing.
1095
1144
  //!
1096
1145
  //! <b>Complexity</b>: Constant.
1097
- size_type max_size() const BOOST_NOEXCEPT_OR_NOTHROW
1146
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1147
+ size_type max_size() const BOOST_NOEXCEPT_OR_NOTHROW
1098
1148
  { return this->index.max_size() - ExtraPointers; }
1099
1149
 
1100
1150
  //! <b>Effects</b>: Inserts or erases elements at the end such that
@@ -1106,7 +1156,7 @@ class stable_vector
1106
1156
  void resize(size_type n)
1107
1157
  {
1108
1158
  typedef value_init_construct_iterator<value_type, difference_type> value_init_iterator;
1109
- STABLE_VECTOR_CHECK_INVARIANT;
1159
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
1110
1160
  if(n > this->size())
1111
1161
  this->insert(this->cend(), value_init_iterator(n - this->size()), value_init_iterator());
1112
1162
  else if(n < this->size())
@@ -1124,7 +1174,7 @@ class stable_vector
1124
1174
  void resize(size_type n, default_init_t)
1125
1175
  {
1126
1176
  typedef default_init_construct_iterator<value_type, difference_type> default_init_iterator;
1127
- STABLE_VECTOR_CHECK_INVARIANT;
1177
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
1128
1178
  if(n > this->size())
1129
1179
  this->insert(this->cend(), default_init_iterator(n - this->size()), default_init_iterator());
1130
1180
  else if(n < this->size())
@@ -1139,7 +1189,7 @@ class stable_vector
1139
1189
  //! <b>Complexity</b>: Linear to the difference between size() and new_size.
1140
1190
  void resize(size_type n, const T& t)
1141
1191
  {
1142
- STABLE_VECTOR_CHECK_INVARIANT;
1192
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
1143
1193
  if(n > this->size())
1144
1194
  this->insert(this->cend(), n - this->size(), t);
1145
1195
  else if(n < this->size())
@@ -1152,7 +1202,8 @@ class stable_vector
1152
1202
  //! <b>Throws</b>: Nothing.
1153
1203
  //!
1154
1204
  //! <b>Complexity</b>: Constant.
1155
- size_type capacity() const BOOST_NOEXCEPT_OR_NOTHROW
1205
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1206
+ size_type capacity() const BOOST_NOEXCEPT_OR_NOTHROW
1156
1207
  {
1157
1208
  const size_type index_size = this->index.size();
1158
1209
  BOOST_ASSERT(!index_size || index_size >= ExtraPointers);
@@ -1172,7 +1223,7 @@ class stable_vector
1172
1223
  //! <b>Throws</b>: If memory allocation allocation throws.
1173
1224
  void reserve(size_type n)
1174
1225
  {
1175
- STABLE_VECTOR_CHECK_INVARIANT;
1226
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
1176
1227
  if(n > this->max_size()){
1177
1228
  throw_length_error("stable_vector::reserve max_size() exceeded");
1178
1229
  }
@@ -1239,7 +1290,8 @@ class stable_vector
1239
1290
  //! <b>Throws</b>: Nothing.
1240
1291
  //!
1241
1292
  //! <b>Complexity</b>: Constant.
1242
- reference front() BOOST_NOEXCEPT_OR_NOTHROW
1293
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1294
+ reference front() BOOST_NOEXCEPT_OR_NOTHROW
1243
1295
  {
1244
1296
  BOOST_ASSERT(!this->empty());
1245
1297
  return static_cast<node_reference>(*this->index.front()).get_data();
@@ -1253,7 +1305,8 @@ class stable_vector
1253
1305
  //! <b>Throws</b>: Nothing.
1254
1306
  //!
1255
1307
  //! <b>Complexity</b>: Constant.
1256
- const_reference front() const BOOST_NOEXCEPT_OR_NOTHROW
1308
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1309
+ const_reference front() const BOOST_NOEXCEPT_OR_NOTHROW
1257
1310
  {
1258
1311
  BOOST_ASSERT(!this->empty());
1259
1312
  return static_cast<const_node_reference>(*this->index.front()).get_data();
@@ -1267,7 +1320,8 @@ class stable_vector
1267
1320
  //! <b>Throws</b>: Nothing.
1268
1321
  //!
1269
1322
  //! <b>Complexity</b>: Constant.
1270
- reference back() BOOST_NOEXCEPT_OR_NOTHROW
1323
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1324
+ reference back() BOOST_NOEXCEPT_OR_NOTHROW
1271
1325
  {
1272
1326
  BOOST_ASSERT(!this->empty());
1273
1327
  return static_cast<node_reference>(*this->index[this->size()-1u]).get_data();
@@ -1281,7 +1335,8 @@ class stable_vector
1281
1335
  //! <b>Throws</b>: Nothing.
1282
1336
  //!
1283
1337
  //! <b>Complexity</b>: Constant.
1284
- const_reference back() const BOOST_NOEXCEPT_OR_NOTHROW
1338
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1339
+ const_reference back() const BOOST_NOEXCEPT_OR_NOTHROW
1285
1340
  {
1286
1341
  BOOST_ASSERT(!this->empty());
1287
1342
  return static_cast<const_node_reference>(*this->index[this->size()-1u]).get_data();
@@ -1295,7 +1350,8 @@ class stable_vector
1295
1350
  //! <b>Throws</b>: Nothing.
1296
1351
  //!
1297
1352
  //! <b>Complexity</b>: Constant.
1298
- reference operator[](size_type n) BOOST_NOEXCEPT_OR_NOTHROW
1353
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1354
+ reference operator[](size_type n) BOOST_NOEXCEPT_OR_NOTHROW
1299
1355
  {
1300
1356
  BOOST_ASSERT(this->size() > n);
1301
1357
  return static_cast<node_reference>(*this->index[n]).get_data();
@@ -1309,7 +1365,8 @@ class stable_vector
1309
1365
  //! <b>Throws</b>: Nothing.
1310
1366
  //!
1311
1367
  //! <b>Complexity</b>: Constant.
1312
- const_reference operator[](size_type n) const BOOST_NOEXCEPT_OR_NOTHROW
1368
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1369
+ const_reference operator[](size_type n) const BOOST_NOEXCEPT_OR_NOTHROW
1313
1370
  {
1314
1371
  BOOST_ASSERT(this->size() > n);
1315
1372
  return static_cast<const_node_reference>(*this->index[n]).get_data();
@@ -1326,7 +1383,8 @@ class stable_vector
1326
1383
  //! <b>Complexity</b>: Constant.
1327
1384
  //!
1328
1385
  //! <b>Note</b>: Non-standard extension
1329
- iterator nth(size_type n) BOOST_NOEXCEPT_OR_NOTHROW
1386
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1387
+ iterator nth(size_type n) BOOST_NOEXCEPT_OR_NOTHROW
1330
1388
  {
1331
1389
  BOOST_ASSERT(this->size() >= n);
1332
1390
  return (this->index.empty()) ? this->end() : iterator(node_ptr_traits::static_cast_from(this->index[n]));
@@ -1343,7 +1401,8 @@ class stable_vector
1343
1401
  //! <b>Complexity</b>: Constant.
1344
1402
  //!
1345
1403
  //! <b>Note</b>: Non-standard extension
1346
- const_iterator nth(size_type n) const BOOST_NOEXCEPT_OR_NOTHROW
1404
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1405
+ const_iterator nth(size_type n) const BOOST_NOEXCEPT_OR_NOTHROW
1347
1406
  {
1348
1407
  BOOST_ASSERT(this->size() >= n);
1349
1408
  return (this->index.empty()) ? this->cend() : iterator(node_ptr_traits::static_cast_from(this->index[n]));
@@ -1359,7 +1418,8 @@ class stable_vector
1359
1418
  //! <b>Complexity</b>: Constant.
1360
1419
  //!
1361
1420
  //! <b>Note</b>: Non-standard extension
1362
- size_type index_of(iterator p) BOOST_NOEXCEPT_OR_NOTHROW
1421
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1422
+ size_type index_of(iterator p) BOOST_NOEXCEPT_OR_NOTHROW
1363
1423
  { return this->priv_index_of(p.node_pointer()); }
1364
1424
 
1365
1425
  //! <b>Requires</b>: begin() <= p <= end().
@@ -1372,7 +1432,8 @@ class stable_vector
1372
1432
  //! <b>Complexity</b>: Constant.
1373
1433
  //!
1374
1434
  //! <b>Note</b>: Non-standard extension
1375
- size_type index_of(const_iterator p) const BOOST_NOEXCEPT_OR_NOTHROW
1435
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1436
+ size_type index_of(const_iterator p) const BOOST_NOEXCEPT_OR_NOTHROW
1376
1437
  { return this->priv_index_of(p.node_pointer()); }
1377
1438
 
1378
1439
  //! <b>Requires</b>: size() > n.
@@ -1380,10 +1441,11 @@ class stable_vector
1380
1441
  //! <b>Effects</b>: Returns a reference to the nth element
1381
1442
  //! from the beginning of the container.
1382
1443
  //!
1383
- //! <b>Throws</b>: std::range_error if n >= size()
1444
+ //! <b>Throws</b>: range_error if n >= size()
1384
1445
  //!
1385
1446
  //! <b>Complexity</b>: Constant.
1386
- reference at(size_type n)
1447
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1448
+ reference at(size_type n)
1387
1449
  {
1388
1450
  if(n >= this->size()){
1389
1451
  throw_out_of_range("vector::at invalid subscript");
@@ -1396,10 +1458,11 @@ class stable_vector
1396
1458
  //! <b>Effects</b>: Returns a const reference to the nth element
1397
1459
  //! from the beginning of the container.
1398
1460
  //!
1399
- //! <b>Throws</b>: std::range_error if n >= size()
1461
+ //! <b>Throws</b>: range_error if n >= size()
1400
1462
  //!
1401
1463
  //! <b>Complexity</b>: Constant.
1402
- const_reference at(size_type n)const
1464
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1465
+ const_reference at(size_type n)const
1403
1466
  {
1404
1467
  if(n >= this->size()){
1405
1468
  throw_out_of_range("vector::at invalid subscript");
@@ -1544,7 +1607,7 @@ class stable_vector
1544
1607
  iterator insert(const_iterator p, size_type n, const T& t)
1545
1608
  {
1546
1609
  BOOST_ASSERT(this->priv_in_range_or_end(p));
1547
- STABLE_VECTOR_CHECK_INVARIANT;
1610
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
1548
1611
  typedef constant_iterator<value_type, difference_type> cvalue_iterator;
1549
1612
  return this->insert(p, cvalue_iterator(t, n), cvalue_iterator());
1550
1613
  }
@@ -1558,10 +1621,10 @@ class stable_vector
1558
1621
  //! <b>Returns</b>: an iterator to the first inserted element or p if first == last.
1559
1622
  //!
1560
1623
  //! <b>Complexity</b>: Linear to distance [il.begin(), il.end()).
1561
- iterator insert(const_iterator p, std::initializer_list<value_type> il)
1624
+ BOOST_CONTAINER_FORCEINLINE iterator insert(const_iterator p, std::initializer_list<value_type> il)
1562
1625
  {
1563
1626
  //Position checks done by insert()
1564
- STABLE_VECTOR_CHECK_INVARIANT;
1627
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
1565
1628
  return insert(p, il.begin(), il.end());
1566
1629
  }
1567
1630
  #endif
@@ -1590,7 +1653,7 @@ class stable_vector
1590
1653
  )
1591
1654
  {
1592
1655
  BOOST_ASSERT(this->priv_in_range_or_end(p));
1593
- STABLE_VECTOR_CHECK_INVARIANT;
1656
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
1594
1657
  const size_type pos_n = p - this->cbegin();
1595
1658
  for(; first != last; ++first){
1596
1659
  this->emplace(p, *first);
@@ -1645,7 +1708,7 @@ class stable_vector
1645
1708
  //! <b>Throws</b>: Nothing.
1646
1709
  //!
1647
1710
  //! <b>Complexity</b>: Constant time.
1648
- void pop_back() BOOST_NOEXCEPT_OR_NOTHROW
1711
+ BOOST_CONTAINER_FORCEINLINE void pop_back() BOOST_NOEXCEPT_OR_NOTHROW
1649
1712
  {
1650
1713
  BOOST_ASSERT(!this->empty());
1651
1714
  this->erase(--this->cend());
@@ -1657,10 +1720,10 @@ class stable_vector
1657
1720
  //!
1658
1721
  //! <b>Complexity</b>: Linear to the elements between p and the
1659
1722
  //! last element. Constant if p is the last element.
1660
- iterator erase(const_iterator p) BOOST_NOEXCEPT_OR_NOTHROW
1723
+ BOOST_CONTAINER_FORCEINLINE iterator erase(const_iterator p) BOOST_NOEXCEPT_OR_NOTHROW
1661
1724
  {
1662
1725
  BOOST_ASSERT(this->priv_in_range(p));
1663
- STABLE_VECTOR_CHECK_INVARIANT;
1726
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
1664
1727
  const size_type d = p - this->cbegin();
1665
1728
  index_iterator it = this->index.begin() + d;
1666
1729
  this->priv_delete_node(p.node_pointer());
@@ -1679,7 +1742,7 @@ class stable_vector
1679
1742
  {
1680
1743
  BOOST_ASSERT(first == last ||
1681
1744
  (first < last && this->priv_in_range(first) && this->priv_in_range_or_end(last)));
1682
- STABLE_VECTOR_CHECK_INVARIANT;
1745
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
1683
1746
  const const_iterator cbeg(this->cbegin());
1684
1747
  const size_type d1 = static_cast<size_type>(first - cbeg),
1685
1748
  d2 = static_cast<size_type>(last - cbeg);
@@ -1715,7 +1778,7 @@ class stable_vector
1715
1778
  BOOST_ASSERT(allocator_traits_type::propagate_on_container_swap::value ||
1716
1779
  allocator_traits_type::is_always_equal::value ||
1717
1780
  this->get_stored_allocator() == x.get_stored_allocator());
1718
- STABLE_VECTOR_CHECK_INVARIANT;
1781
+ BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT;
1719
1782
  dtl::bool_<allocator_traits_type::propagate_on_container_swap::value> flag;
1720
1783
  dtl::swap_alloc(this->priv_node_alloc(), x.priv_node_alloc(), flag);
1721
1784
  //vector's allocator is swapped here
@@ -1728,49 +1791,56 @@ class stable_vector
1728
1791
  //! <b>Throws</b>: Nothing.
1729
1792
  //!
1730
1793
  //! <b>Complexity</b>: Linear to the number of elements in the stable_vector.
1731
- void clear() BOOST_NOEXCEPT_OR_NOTHROW
1794
+ BOOST_CONTAINER_FORCEINLINE void clear() BOOST_NOEXCEPT_OR_NOTHROW
1732
1795
  { this->erase(this->cbegin(),this->cend()); }
1733
1796
 
1734
1797
  //! <b>Effects</b>: Returns true if x and y are equal
1735
1798
  //!
1736
1799
  //! <b>Complexity</b>: Linear to the number of elements in the container.
1737
- friend bool operator==(const stable_vector& x, const stable_vector& y)
1800
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1801
+ friend bool operator==(const stable_vector& x, const stable_vector& y)
1738
1802
  { return x.size() == y.size() && ::boost::container::algo_equal(x.begin(), x.end(), y.begin()); }
1739
1803
 
1740
1804
  //! <b>Effects</b>: Returns true if x and y are unequal
1741
1805
  //!
1742
1806
  //! <b>Complexity</b>: Linear to the number of elements in the container.
1743
- friend bool operator!=(const stable_vector& x, const stable_vector& y)
1807
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1808
+ friend bool operator!=(const stable_vector& x, const stable_vector& y)
1744
1809
  { return !(x == y); }
1745
1810
 
1746
1811
  //! <b>Effects</b>: Returns true if x is less than y
1747
1812
  //!
1748
1813
  //! <b>Complexity</b>: Linear to the number of elements in the container.
1749
- friend bool operator<(const stable_vector& x, const stable_vector& y)
1814
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1815
+ friend bool operator<(const stable_vector& x, const stable_vector& y)
1750
1816
  { return ::boost::container::algo_lexicographical_compare(x.begin(), x.end(), y.begin(), y.end()); }
1751
1817
 
1752
1818
  //! <b>Effects</b>: Returns true if x is greater than y
1753
1819
  //!
1754
1820
  //! <b>Complexity</b>: Linear to the number of elements in the container.
1755
- friend bool operator>(const stable_vector& x, const stable_vector& y)
1821
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1822
+ friend bool operator>(const stable_vector& x, const stable_vector& y)
1756
1823
  { return y < x; }
1757
1824
 
1758
1825
  //! <b>Effects</b>: Returns true if x is equal or less than y
1759
1826
  //!
1760
1827
  //! <b>Complexity</b>: Linear to the number of elements in the container.
1761
- friend bool operator<=(const stable_vector& x, const stable_vector& y)
1828
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1829
+ friend bool operator<=(const stable_vector& x, const stable_vector& y)
1762
1830
  { return !(y < x); }
1763
1831
 
1764
1832
  //! <b>Effects</b>: Returns true if x is equal or greater than y
1765
1833
  //!
1766
1834
  //! <b>Complexity</b>: Linear to the number of elements in the container.
1767
- friend bool operator>=(const stable_vector& x, const stable_vector& y)
1835
+ BOOST_CONTAINER_ATTRIBUTE_NODISCARD BOOST_CONTAINER_FORCEINLINE
1836
+ friend bool operator>=(const stable_vector& x, const stable_vector& y)
1768
1837
  { return !(x < y); }
1769
1838
 
1770
1839
  //! <b>Effects</b>: x.swap(y)
1771
1840
  //!
1772
1841
  //! <b>Complexity</b>: Constant.
1773
- friend void swap(stable_vector& x, stable_vector& y)
1842
+ BOOST_CONTAINER_FORCEINLINE friend void swap(stable_vector& x, stable_vector& y)
1843
+ BOOST_NOEXCEPT_IF(BOOST_NOEXCEPT(x.swap(y)))
1774
1844
  { x.swap(y); }
1775
1845
 
1776
1846
  #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
@@ -1781,12 +1851,12 @@ class stable_vector
1781
1851
  return (this->begin() <= pos) && (pos < this->end());
1782
1852
  }
1783
1853
 
1784
- bool priv_in_range_or_end(const_iterator pos) const
1854
+ BOOST_CONTAINER_FORCEINLINE bool priv_in_range_or_end(const_iterator pos) const
1785
1855
  {
1786
1856
  return (this->begin() <= pos) && (pos <= this->end());
1787
1857
  }
1788
1858
 
1789
- size_type priv_index_of(node_ptr p) const
1859
+ BOOST_CONTAINER_FORCEINLINE size_type priv_index_of(node_ptr p) const
1790
1860
  {
1791
1861
  //Check range
1792
1862
  BOOST_ASSERT(this->index.empty() || (this->index.data() <= p->up));
@@ -1820,18 +1890,18 @@ class stable_vector
1820
1890
  class push_back_rollback
1821
1891
  {
1822
1892
  public:
1823
- push_back_rollback(stable_vector &sv, const node_ptr &p)
1893
+ BOOST_CONTAINER_FORCEINLINE push_back_rollback(stable_vector &sv, const node_ptr &p)
1824
1894
  : m_sv(sv), m_p(p)
1825
1895
  {}
1826
1896
 
1827
- ~push_back_rollback()
1897
+ BOOST_CONTAINER_FORCEINLINE ~push_back_rollback()
1828
1898
  {
1829
1899
  if(m_p){
1830
1900
  m_sv.priv_put_in_pool(m_p);
1831
1901
  }
1832
1902
  }
1833
1903
 
1834
- void release()
1904
+ BOOST_CONTAINER_FORCEINLINE void release()
1835
1905
  { m_p = node_ptr(); }
1836
1906
 
1837
1907
  private:
@@ -1861,7 +1931,7 @@ class stable_vector
1861
1931
  return index_beg + idx;
1862
1932
  }
1863
1933
 
1864
- bool priv_capacity_bigger_than_size() const
1934
+ BOOST_CONTAINER_FORCEINLINE bool priv_capacity_bigger_than_size() const
1865
1935
  {
1866
1936
  return this->index.capacity() > this->index.size() &&
1867
1937
  this->internal_data.pool_size > 0;
@@ -1935,7 +2005,7 @@ class stable_vector
1935
2005
  this->allocate_individual(n, m);
1936
2006
  holder.splice_after(holder.before_begin(), m, m.before_begin(), m.last(), n);
1937
2007
  this->internal_data.pool_size += n;
1938
- std::pair<node_ptr, node_ptr> data(holder.extract_data());
2008
+ typename multiallocation_chain::pointer_pair data(holder.extract_data());
1939
2009
  pool_first_ref = data.first;
1940
2010
  pool_last_ref = data.second;
1941
2011
  }
@@ -1951,7 +2021,7 @@ class stable_vector
1951
2021
  , internal_data.pool_size);
1952
2022
  holder.push_front(p);
1953
2023
  ++this->internal_data.pool_size;
1954
- std::pair<node_ptr, node_ptr> ret(holder.extract_data());
2024
+ typename multiallocation_chain::pointer_pair ret(holder.extract_data());
1955
2025
  pool_first_ref = ret.first;
1956
2026
  pool_last_ref = ret.second;
1957
2027
  }
@@ -1965,7 +2035,7 @@ class stable_vector
1965
2035
  , node_ptr_traits::static_cast_from(pool_last_ref)
1966
2036
  , internal_data.pool_size);
1967
2037
  this->internal_data.pool_size = ch.size();
1968
- const std::pair<node_ptr, node_ptr> ret(ch.extract_data());
2038
+ const typename multiallocation_chain::pointer_pair ret(ch.extract_data());
1969
2039
  pool_first_ref = ret.first;
1970
2040
  pool_last_ref = ret.second;
1971
2041
  }
@@ -1987,23 +2057,23 @@ class stable_vector
1987
2057
  pool_first_ref = pool_last_ref = node_ptr();
1988
2058
  }
1989
2059
  else{
1990
- const std::pair<node_ptr, node_ptr> data(holder.extract_data());
2060
+ const typename multiallocation_chain::pointer_pair data(holder.extract_data());
1991
2061
  pool_first_ref = data.first;
1992
2062
  pool_last_ref = data.second;
1993
2063
  }
1994
2064
  return ret;
1995
2065
  }
1996
2066
 
1997
- node_base_ptr priv_get_end_node() const
2067
+ BOOST_CONTAINER_FORCEINLINE node_base_ptr priv_get_end_node() const
1998
2068
  { return node_base_ptr_traits::pointer_to(const_cast<node_base_type&>(this->internal_data.end_node)); }
1999
2069
 
2000
- void priv_destroy_node(const node_type &n)
2070
+ BOOST_CONTAINER_FORCEINLINE void priv_destroy_node(const node_type &n)
2001
2071
  {
2002
2072
  allocator_traits<node_allocator_type>::
2003
2073
  destroy(this->priv_node_alloc(), &n);
2004
2074
  }
2005
2075
 
2006
- void priv_delete_node(const node_ptr &n)
2076
+ BOOST_CONTAINER_FORCEINLINE void priv_delete_node(const node_ptr &n)
2007
2077
  {
2008
2078
  this->priv_destroy_node(*n);
2009
2079
  this->priv_put_in_pool(n);
@@ -2156,7 +2226,7 @@ stable_vector(InputIterator, InputIterator, Allocator const&) ->
2156
2226
 
2157
2227
  #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
2158
2228
 
2159
- #undef STABLE_VECTOR_CHECK_INVARIANT
2229
+ #undef BOOST_CONTAINER_STABLE_VECTOR_CHECK_INVARIANT
2160
2230
 
2161
2231
  } //namespace container {
2162
2232
 
@@ -2165,8 +2235,9 @@ stable_vector(InputIterator, InputIterator, Allocator const&) ->
2165
2235
  template <class T, class Allocator>
2166
2236
  struct has_trivial_destructor_after_move<boost::container::stable_vector<T, Allocator> >
2167
2237
  {
2168
- typedef typename ::boost::container::allocator_traits<Allocator>::pointer pointer;
2169
- static const bool value = ::boost::has_trivial_destructor_after_move<Allocator>::value &&
2238
+ typedef typename boost::container::stable_vector<T, Allocator>::allocator_type allocator_type;
2239
+ typedef typename ::boost::container::allocator_traits<allocator_type>::pointer pointer;
2240
+ static const bool value = ::boost::has_trivial_destructor_after_move<allocator_type>::value &&
2170
2241
  ::boost::has_trivial_destructor_after_move<pointer>::value;
2171
2242
  };
2172
2243