passenger 6.0.11 → 6.0.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (280) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +24 -1
  3. data/CONTRIBUTORS +3 -0
  4. data/src/agent/Core/Config.h +1 -1
  5. data/src/agent/Core/Controller/CheckoutSession.cpp +24 -13
  6. data/src/agent/Core/Controller/Config.h +1 -1
  7. data/src/agent/Core/Controller/InternalUtils.cpp +32 -6
  8. data/src/agent/Core/Controller.h +4 -1
  9. data/src/agent/Watchdog/Config.h +1 -1
  10. data/src/cxx_supportlib/Constants.h +1 -1
  11. data/src/cxx_supportlib/IOTools/IOUtils.cpp +4 -4
  12. data/src/cxx_supportlib/vendor-modified/boost/align/aligned_alloc.hpp +47 -0
  13. data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc_posix.hpp +41 -0
  14. data/src/cxx_supportlib/vendor-modified/boost/align/detail/is_alignment.hpp +28 -0
  15. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +53 -1
  16. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +179 -0
  17. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +57 -1
  18. data/src/cxx_supportlib/vendor-modified/boost/asio/associator.hpp +37 -0
  19. data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +789 -106
  20. data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +1 -1
  21. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +80 -0
  22. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +10 -0
  23. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +80 -0
  24. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +30 -0
  25. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +20 -0
  26. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +90 -0
  27. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +60 -0
  28. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +10 -0
  29. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +723 -0
  30. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +191 -12
  31. data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_signal.hpp +361 -0
  32. data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_state.hpp +237 -0
  33. data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_type.hpp +176 -0
  34. data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +30 -2
  35. data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +60 -0
  36. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_cancellation_state.hpp +165 -0
  37. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +209 -76
  38. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +149 -60
  39. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +40 -0
  40. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +8 -4
  41. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +14 -4
  42. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +6 -0
  43. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +14 -10
  44. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +21 -18
  45. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +30 -19
  46. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +8 -0
  47. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +14 -0
  48. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +20 -0
  49. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +30 -0
  50. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +20 -0
  51. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +29 -0
  52. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +24 -0
  53. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +19 -0
  54. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +3 -1
  55. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +6 -0
  56. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +15 -5
  57. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +60 -0
  58. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +8 -0
  59. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +27 -0
  60. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +93 -0
  61. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +77 -0
  62. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +111 -0
  63. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +4 -0
  64. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +44 -0
  65. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/recycling_allocator.hpp +2 -1
  66. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +2 -2
  67. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +14 -4
  68. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +90 -24
  69. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +30 -1
  70. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +4 -0
  71. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +5 -1
  72. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +5 -2
  73. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +12 -12
  74. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_execute.hpp +10 -8
  75. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/connect.hpp +8 -8
  76. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/execute.hpp +7 -7
  77. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/schedule.hpp +7 -7
  78. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_done.hpp +7 -7
  79. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_error.hpp +7 -7
  80. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_value.hpp +13 -13
  81. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/start.hpp +7 -7
  82. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/submit.hpp +8 -8
  83. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/append.hpp +73 -0
  84. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_tuple.hpp +133 -0
  85. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/awaitable_operators.hpp +538 -0
  86. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/cancellation_condition.hpp +157 -0
  87. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro.hpp +1057 -0
  88. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/deferred.hpp +607 -0
  89. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/completion_handler_erasure.hpp +160 -0
  90. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_promise_allocator.hpp +120 -0
  91. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_traits.hpp +185 -0
  92. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/partial_promise.hpp +181 -0
  93. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/append.hpp +219 -0
  94. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +14 -28
  95. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_tuple.hpp +248 -0
  96. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/deferred.hpp +106 -0
  97. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +434 -0
  98. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/prepend.hpp +219 -0
  99. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +100 -0
  100. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +217 -0
  101. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/prepend.hpp +73 -0
  102. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/promise.hpp +608 -0
  103. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +284 -0
  104. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +344 -20
  105. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +23 -54
  106. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +23 -54
  107. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +66 -18
  108. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/compose.hpp +55 -5
  109. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +68 -80
  110. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/defer.hpp +8 -4
  111. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/dispatch.hpp +8 -4
  112. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +3 -2
  113. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/post.hpp +8 -4
  114. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +98 -113
  115. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +71 -82
  116. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +210 -266
  117. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +248 -30
  118. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +11 -21
  119. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +15 -3
  120. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +71 -87
  121. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +46 -68
  122. data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +4 -4
  123. data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +2 -7
  124. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +10 -0
  125. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +23 -3
  126. data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +21 -21
  127. data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +9 -9
  128. data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +88 -0
  129. data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +44 -0
  130. data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +132 -0
  131. data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +21 -21
  132. data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +9 -9
  133. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +1 -1
  134. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +5 -0
  135. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +1 -1
  136. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +14 -0
  137. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +36 -27
  138. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +1 -1
  139. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +2 -2
  140. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +37 -0
  141. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +1 -1
  142. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +14 -7
  143. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +73 -1
  144. data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +4 -4
  145. data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +235 -0
  146. data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +4 -4
  147. data/src/cxx_supportlib/vendor-modified/boost/asio/use_awaitable.hpp +7 -10
  148. data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +1 -1
  149. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +20 -0
  150. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +20 -0
  151. data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +88 -0
  152. data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +44 -0
  153. data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +6 -0
  154. data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_ref.hpp +14 -1
  155. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +17 -13
  156. data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_ref.hpp +14 -1
  157. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx03.hpp +2 -5
  158. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx11.hpp +2 -5
  159. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx14.hpp +2 -2
  160. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx17.hpp +2 -2
  161. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx20.hpp +56 -0
  162. data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +1 -5
  163. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/common_edg.hpp +31 -11
  164. data/src/cxx_supportlib/vendor-modified/boost/config/detail/cxx_composite.hpp +20 -4
  165. data/src/cxx_supportlib/vendor-modified/boost/config/detail/select_platform_config.hpp +5 -0
  166. data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +81 -0
  167. data/src/cxx_supportlib/vendor-modified/boost/config/platform/bsd.hpp +5 -8
  168. data/src/cxx_supportlib/vendor-modified/boost/config/platform/wasm.hpp +17 -0
  169. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +26 -0
  170. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +49 -0
  171. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +46 -4
  172. data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +2 -2
  173. data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +1 -1
  174. data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool.hpp +2 -2
  175. data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool.hpp +2 -2
  176. data/src/cxx_supportlib/vendor-modified/boost/container/detail/std_fwd.hpp +3 -0
  177. data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +2 -2
  178. data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +1 -1
  179. data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +1 -1
  180. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/polymorphic_allocator.hpp +6 -6
  181. data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +4 -4
  182. data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +45 -38
  183. data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +24 -0
  184. data/src/cxx_supportlib/vendor-modified/boost/core/ignore_unused.hpp +32 -2
  185. data/src/cxx_supportlib/vendor-modified/boost/core/uncaught_exceptions.hpp +7 -7
  186. data/src/cxx_supportlib/vendor-modified/boost/date_time/compiler_config.hpp +0 -24
  187. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_parsers.hpp +4 -0
  188. data/src/cxx_supportlib/vendor-modified/boost/intrusive/any_hook.hpp +4 -4
  189. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +83 -83
  190. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +43 -43
  191. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +31 -31
  192. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +85 -85
  193. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +68 -68
  194. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +72 -62
  195. data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +19 -20
  196. data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +19 -19
  197. data/src/cxx_supportlib/vendor-modified/boost/intrusive/derivation_value_traits.hpp +4 -4
  198. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +2 -2
  199. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +3 -3
  200. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/common_slist_algorithms.hpp +5 -5
  201. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/config_begin.hpp +1 -0
  202. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/generic_hook.hpp +8 -8
  203. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_combine.hpp +2 -4
  204. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +1 -1
  205. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/math.hpp +2 -50
  206. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_cloner_disposer.hpp +1 -1
  207. data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +71 -70
  208. data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +15 -14
  209. data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +84 -82
  210. data/src/cxx_supportlib/vendor-modified/boost/intrusive/list_hook.hpp +10 -10
  211. data/src/cxx_supportlib/vendor-modified/boost/intrusive/member_value_traits.hpp +4 -4
  212. data/src/cxx_supportlib/vendor-modified/boost/intrusive/parent_from_member.hpp +2 -2
  213. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_plus_bits.hpp +4 -4
  214. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +18 -18
  215. data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +43 -43
  216. data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +26 -26
  217. data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +85 -85
  218. data/src/cxx_supportlib/vendor-modified/boost/intrusive/set_hook.hpp +12 -12
  219. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +93 -93
  220. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +51 -51
  221. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +24 -24
  222. data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +104 -104
  223. data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist_hook.hpp +8 -6
  224. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +91 -91
  225. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +46 -46
  226. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +31 -31
  227. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +51 -51
  228. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +18 -18
  229. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +97 -97
  230. data/src/cxx_supportlib/vendor-modified/boost/intrusive/trivial_value_traits.hpp +6 -4
  231. data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +63 -63
  232. data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +15 -15
  233. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +4 -1
  234. data/src/cxx_supportlib/vendor-modified/boost/move/detail/config_begin.hpp +1 -0
  235. data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_traits.hpp +1 -0
  236. data/src/cxx_supportlib/vendor-modified/boost/move/detail/nsec_clock.hpp +1 -1
  237. data/src/cxx_supportlib/vendor-modified/boost/operators.hpp +2 -0
  238. data/src/cxx_supportlib/vendor-modified/boost/regex/concepts.hpp +1 -1
  239. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +3 -0
  240. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/unicode_iterator.hpp +112 -31
  241. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_parser.hpp +3 -0
  242. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/mem_block_cache.hpp +4 -8
  243. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/unicode_iterator.hpp +0 -2
  244. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/w32_regex_traits.hpp +6 -2
  245. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +1 -1
  246. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +22 -2
  247. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +59 -1
  248. data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +9 -11
  249. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category.hpp +27 -21
  250. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category_impl.hpp +34 -3
  251. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.hpp +378 -36
  252. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_condition.hpp +97 -21
  253. data/src/cxx_supportlib/vendor-modified/boost/system/detail/interop_category.hpp +107 -0
  254. data/src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp +33 -0
  255. data/src/cxx_supportlib/vendor-modified/boost/system/detail/snprintf.hpp +70 -0
  256. data/src/cxx_supportlib/vendor-modified/boost/system/detail/{to_std_category.hpp → std_category.hpp} +5 -55
  257. data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_impl.hpp +2 -12
  258. data/src/cxx_supportlib/vendor-modified/boost/system/error_code.hpp +0 -33
  259. data/src/cxx_supportlib/vendor-modified/boost/utility/detail/result_of_variadic.hpp +190 -0
  260. data/src/cxx_supportlib/vendor-modified/boost/utility/result_of.hpp +20 -9
  261. data/src/cxx_supportlib/vendor-modified/boost/utility/string_view.hpp +3 -1
  262. data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
  263. data/src/nginx_module/ConfigGeneral/AutoGeneratedDefinitions.c +8 -0
  264. data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c +6 -0
  265. data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c +12 -0
  266. data/src/nginx_module/LocationConfig/AutoGeneratedCreateFunction.c +5 -0
  267. data/src/nginx_module/LocationConfig/AutoGeneratedHeaderSerialization.c +21 -0
  268. data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c +13 -0
  269. data/src/nginx_module/LocationConfig/AutoGeneratedMergeFunction.c +3 -0
  270. data/src/nginx_module/LocationConfig/AutoGeneratedStruct.h +4 -0
  271. data/src/ruby_supportlib/phusion_passenger/admin_tools/instance_registry.rb +3 -2
  272. data/src/ruby_supportlib/phusion_passenger/loader_shared_helpers.rb +8 -1
  273. data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +6 -0
  274. data/src/ruby_supportlib/phusion_passenger/packaging.rb +1 -0
  275. data/src/ruby_supportlib/phusion_passenger/platform_info/openssl.rb +1 -1
  276. data/src/ruby_supportlib/phusion_passenger/platform_info/operating_system.rb +8 -0
  277. data/src/ruby_supportlib/phusion_passenger/request_handler.rb +4 -1
  278. data/src/ruby_supportlib/phusion_passenger.rb +1 -1
  279. metadata +39 -4
  280. data/src/cxx_supportlib/vendor-modified/boost/system/detail/is_generic_value.hpp +0 -125
@@ -96,7 +96,7 @@ class list_base_hook
96
96
  //! initializes the node to an unlinked state.
97
97
  //!
98
98
  //! <b>Throws</b>: Nothing.
99
- list_base_hook();
99
+ list_base_hook() BOOST_NOEXCEPT;
100
100
 
101
101
  //! <b>Effects</b>: If link_mode is \c auto_unlink or \c safe_link
102
102
  //! initializes the node to an unlinked state. The argument is ignored.
@@ -107,7 +107,7 @@ class list_base_hook
107
107
  //! makes classes using the hook STL-compliant without forcing the
108
108
  //! user to do some additional work. \c swap can be used to emulate
109
109
  //! move-semantics.
110
- list_base_hook(const list_base_hook& );
110
+ list_base_hook(const list_base_hook& ) BOOST_NOEXCEPT;
111
111
 
112
112
  //! <b>Effects</b>: Empty function. The argument is ignored.
113
113
  //!
@@ -117,7 +117,7 @@ class list_base_hook
117
117
  //! makes classes using the hook STL-compliant without forcing the
118
118
  //! user to do some additional work. \c swap can be used to emulate
119
119
  //! move-semantics.
120
- list_base_hook& operator=(const list_base_hook& );
120
+ list_base_hook& operator=(const list_base_hook& ) BOOST_NOEXCEPT;
121
121
 
122
122
  //! <b>Effects</b>: If link_mode is \c normal_link, the destructor does
123
123
  //! nothing (ie. no code is generated). If link_mode is \c safe_link and the
@@ -139,7 +139,7 @@ class list_base_hook
139
139
  //! <b>Complexity</b>: Constant
140
140
  //!
141
141
  //! <b>Throws</b>: Nothing.
142
- void swap_nodes(list_base_hook &other);
142
+ void swap_nodes(list_base_hook &other) BOOST_NOEXCEPT;
143
143
 
144
144
  //! <b>Precondition</b>: link_mode must be \c safe_link or \c auto_unlink.
145
145
  //!
@@ -154,7 +154,7 @@ class list_base_hook
154
154
  //! This function is only allowed if link_mode is \c auto_unlink.
155
155
  //!
156
156
  //! <b>Throws</b>: Nothing.
157
- void unlink();
157
+ void unlink() BOOST_NOEXCEPT;
158
158
  #endif
159
159
  };
160
160
 
@@ -219,7 +219,7 @@ class list_member_hook
219
219
  //! initializes the node to an unlinked state.
220
220
  //!
221
221
  //! <b>Throws</b>: Nothing.
222
- list_member_hook();
222
+ list_member_hook() BOOST_NOEXCEPT;
223
223
 
224
224
  //! <b>Effects</b>: If link_mode is \c auto_unlink or \c safe_link
225
225
  //! initializes the node to an unlinked state. The argument is ignored.
@@ -230,7 +230,7 @@ class list_member_hook
230
230
  //! makes classes using the hook STL-compliant without forcing the
231
231
  //! user to do some additional work. \c swap can be used to emulate
232
232
  //! move-semantics.
233
- list_member_hook(const list_member_hook& );
233
+ list_member_hook(const list_member_hook& ) BOOST_NOEXCEPT;
234
234
 
235
235
  //! <b>Effects</b>: Empty function. The argument is ignored.
236
236
  //!
@@ -240,7 +240,7 @@ class list_member_hook
240
240
  //! makes classes using the hook STL-compliant without forcing the
241
241
  //! user to do some additional work. \c swap can be used to emulate
242
242
  //! move-semantics.
243
- list_member_hook& operator=(const list_member_hook& );
243
+ list_member_hook& operator=(const list_member_hook& ) BOOST_NOEXCEPT;
244
244
 
245
245
  //! <b>Effects</b>: If link_mode is \c normal_link, the destructor does
246
246
  //! nothing (ie. no code is generated). If link_mode is \c safe_link and the
@@ -262,7 +262,7 @@ class list_member_hook
262
262
  //! <b>Complexity</b>: Constant
263
263
  //!
264
264
  //! <b>Throws</b>: Nothing.
265
- void swap_nodes(list_member_hook &other);
265
+ void swap_nodes(list_member_hook &other) BOOST_NOEXCEPT;
266
266
 
267
267
  //! <b>Precondition</b>: link_mode must be \c safe_link or \c auto_unlink.
268
268
  //!
@@ -277,7 +277,7 @@ class list_member_hook
277
277
  //! This function is only allowed if link_mode is \c auto_unlink.
278
278
  //!
279
279
  //! <b>Throws</b>: Nothing.
280
- void unlink();
280
+ void unlink() BOOST_NOEXCEPT;
281
281
  #endif
282
282
  };
283
283
 
@@ -57,19 +57,19 @@ struct member_value_traits
57
57
  typedef const value_type & const_reference;
58
58
  static const link_mode_type link_mode = LinkMode;
59
59
 
60
- BOOST_INTRUSIVE_FORCEINLINE static node_ptr to_node_ptr(reference value)
60
+ BOOST_INTRUSIVE_FORCEINLINE static node_ptr to_node_ptr(reference value) BOOST_NOEXCEPT
61
61
  { return pointer_traits<node_ptr>::pointer_to(value.*PtrToMember); }
62
62
 
63
- BOOST_INTRUSIVE_FORCEINLINE static const_node_ptr to_node_ptr(const_reference value)
63
+ BOOST_INTRUSIVE_FORCEINLINE static const_node_ptr to_node_ptr(const_reference value) BOOST_NOEXCEPT
64
64
  { return pointer_traits<const_node_ptr>::pointer_to(value.*PtrToMember); }
65
65
 
66
- BOOST_INTRUSIVE_FORCEINLINE static pointer to_value_ptr(const node_ptr &n)
66
+ BOOST_INTRUSIVE_FORCEINLINE static pointer to_value_ptr(const node_ptr &n) BOOST_NOEXCEPT
67
67
  {
68
68
  return pointer_traits<pointer>::pointer_to(*detail::parent_from_member<value_type, node>
69
69
  (boost::movelib::to_raw_pointer(n), PtrToMember));
70
70
  }
71
71
 
72
- BOOST_INTRUSIVE_FORCEINLINE static const_pointer to_value_ptr(const const_node_ptr &n)
72
+ BOOST_INTRUSIVE_FORCEINLINE static const_pointer to_value_ptr(const const_node_ptr &n) BOOST_NOEXCEPT
73
73
  {
74
74
  return pointer_traits<const_pointer>::pointer_to(*detail::parent_from_member<value_type, node>
75
75
  (boost::movelib::to_raw_pointer(n), PtrToMember));
@@ -30,7 +30,7 @@ namespace intrusive {
30
30
  //! Note: this function does not work with pointer to members that rely on
31
31
  //! virtual inheritance.
32
32
  template<class Parent, class Member>
33
- BOOST_INTRUSIVE_FORCEINLINE Parent *get_parent_from_member(Member *member, const Member Parent::* ptr_to_member)
33
+ BOOST_INTRUSIVE_FORCEINLINE Parent *get_parent_from_member(Member *member, const Member Parent::* ptr_to_member) BOOST_NOEXCEPT
34
34
  { return ::boost::intrusive::detail::parent_from_member(member, ptr_to_member); }
35
35
 
36
36
  //! Given a const pointer to a member and its corresponding const pointer to data member,
@@ -38,7 +38,7 @@ BOOST_INTRUSIVE_FORCEINLINE Parent *get_parent_from_member(Member *member, const
38
38
  //! Note: this function does not work with pointer to members that rely on
39
39
  //! virtual inheritance.
40
40
  template<class Parent, class Member>
41
- BOOST_INTRUSIVE_FORCEINLINE const Parent *get_parent_from_member(const Member *member, const Member Parent::* ptr_to_member)
41
+ BOOST_INTRUSIVE_FORCEINLINE const Parent *get_parent_from_member(const Member *member, const Member Parent::* ptr_to_member) BOOST_NOEXCEPT
42
42
  { return ::boost::intrusive::detail::parent_from_member(member, ptr_to_member); }
43
43
 
44
44
  } //namespace intrusive {
@@ -81,19 +81,19 @@ struct pointer_plus_bits<T*, NumBits>
81
81
  static const uintptr_t Mask = uintptr_t((uintptr_t(1u) << NumBits) - 1);
82
82
  typedef T* pointer;
83
83
 
84
- BOOST_INTRUSIVE_FORCEINLINE static pointer get_pointer(pointer n)
84
+ BOOST_INTRUSIVE_FORCEINLINE static pointer get_pointer(pointer n) BOOST_NOEXCEPT
85
85
  { return pointer(uintptr_t(n) & uintptr_t(~Mask)); }
86
86
 
87
- BOOST_INTRUSIVE_FORCEINLINE static void set_pointer(pointer &n, pointer p)
87
+ BOOST_INTRUSIVE_FORCEINLINE static void set_pointer(pointer &n, pointer p) BOOST_NOEXCEPT
88
88
  {
89
89
  BOOST_INTRUSIVE_INVARIANT_ASSERT(0 == (uintptr_t(p) & Mask));
90
90
  n = pointer(uintptr_t(p) | (uintptr_t(n) & Mask));
91
91
  }
92
92
 
93
- BOOST_INTRUSIVE_FORCEINLINE static std::size_t get_bits(pointer n)
93
+ BOOST_INTRUSIVE_FORCEINLINE static std::size_t get_bits(pointer n) BOOST_NOEXCEPT
94
94
  { return std::size_t(uintptr_t(n) & Mask); }
95
95
 
96
- BOOST_INTRUSIVE_FORCEINLINE static void set_bits(pointer &n, std::size_t c)
96
+ BOOST_INTRUSIVE_FORCEINLINE static void set_bits(pointer &n, std::size_t c) BOOST_NOEXCEPT
97
97
  {
98
98
  BOOST_INTRUSIVE_INVARIANT_ASSERT(uintptr_t(c) <= Mask);
99
99
  n = pointer(uintptr_t((get_pointer)(n)) | uintptr_t(c));
@@ -123,7 +123,7 @@ struct pointer_traits
123
123
  //!
124
124
  //! <b>Note</b>: For non-conforming compilers only the existence of a member function called
125
125
  //! <code>pointer_to</code> is checked.
126
- BOOST_INTRUSIVE_FORCEINLINE static pointer pointer_to(reference r)
126
+ BOOST_INTRUSIVE_FORCEINLINE static pointer pointer_to(reference r) BOOST_NOEXCEPT
127
127
  {
128
128
  //Non-standard extension, it does not require Ptr::pointer_to. If not present
129
129
  //tries to converts &r to pointer.
@@ -143,7 +143,7 @@ struct pointer_traits
143
143
  //! <b>Note</b>: For non-conforming compilers only the existence of a member function called
144
144
  //! <code>static_cast_from</code> is checked.
145
145
  template<class UPtr>
146
- BOOST_INTRUSIVE_FORCEINLINE static pointer static_cast_from(const UPtr &uptr)
146
+ BOOST_INTRUSIVE_FORCEINLINE static pointer static_cast_from(const UPtr &uptr) BOOST_NOEXCEPT
147
147
  {
148
148
  typedef const UPtr &RefArg;
149
149
  const bool value = boost::intrusive::detail::
@@ -164,7 +164,7 @@ struct pointer_traits
164
164
  //! <b>Note</b>: For non-conforming compilers only the existence of a member function called
165
165
  //! <code>const_cast_from</code> is checked.
166
166
  template<class UPtr>
167
- BOOST_INTRUSIVE_FORCEINLINE static pointer const_cast_from(const UPtr &uptr)
167
+ BOOST_INTRUSIVE_FORCEINLINE static pointer const_cast_from(const UPtr &uptr) BOOST_NOEXCEPT
168
168
  {
169
169
  typedef const UPtr &RefArg;
170
170
  const bool value = boost::intrusive::detail::
@@ -185,7 +185,7 @@ struct pointer_traits
185
185
  //! <b>Note</b>: For non-conforming compilers only the existence of a member function called
186
186
  //! <code>dynamic_cast_from</code> is checked.
187
187
  template<class UPtr>
188
- BOOST_INTRUSIVE_FORCEINLINE static pointer dynamic_cast_from(const UPtr &uptr)
188
+ BOOST_INTRUSIVE_FORCEINLINE static pointer dynamic_cast_from(const UPtr &uptr) BOOST_NOEXCEPT
189
189
  {
190
190
  typedef const UPtr &RefArg;
191
191
  const bool value = boost::intrusive::detail::
@@ -201,46 +201,46 @@ struct pointer_traits
201
201
  private:
202
202
  //priv_to_raw_pointer
203
203
  template <class T>
204
- BOOST_INTRUSIVE_FORCEINLINE static T* to_raw_pointer(T* p)
204
+ BOOST_INTRUSIVE_FORCEINLINE static T* to_raw_pointer(T* p) BOOST_NOEXCEPT
205
205
  { return p; }
206
206
 
207
207
  template <class Pointer>
208
208
  BOOST_INTRUSIVE_FORCEINLINE static typename pointer_traits<Pointer>::element_type*
209
- to_raw_pointer(const Pointer &p)
209
+ to_raw_pointer(const Pointer &p) BOOST_NOEXCEPT
210
210
  { return pointer_traits::to_raw_pointer(p.operator->()); }
211
211
 
212
212
  //priv_pointer_to
213
- BOOST_INTRUSIVE_FORCEINLINE static pointer priv_pointer_to(boost::intrusive::detail::true_, reference r)
213
+ BOOST_INTRUSIVE_FORCEINLINE static pointer priv_pointer_to(boost::intrusive::detail::true_, reference r) BOOST_NOEXCEPT
214
214
  { return Ptr::pointer_to(r); }
215
215
 
216
- BOOST_INTRUSIVE_FORCEINLINE static pointer priv_pointer_to(boost::intrusive::detail::false_, reference r)
216
+ BOOST_INTRUSIVE_FORCEINLINE static pointer priv_pointer_to(boost::intrusive::detail::false_, reference r) BOOST_NOEXCEPT
217
217
  { return pointer(boost::intrusive::detail::addressof(r)); }
218
218
 
219
219
  //priv_static_cast_from
220
220
  template<class UPtr>
221
- BOOST_INTRUSIVE_FORCEINLINE static pointer priv_static_cast_from(boost::intrusive::detail::true_, const UPtr &uptr)
221
+ BOOST_INTRUSIVE_FORCEINLINE static pointer priv_static_cast_from(boost::intrusive::detail::true_, const UPtr &uptr) BOOST_NOEXCEPT
222
222
  { return Ptr::static_cast_from(uptr); }
223
223
 
224
224
  template<class UPtr>
225
- BOOST_INTRUSIVE_FORCEINLINE static pointer priv_static_cast_from(boost::intrusive::detail::false_, const UPtr &uptr)
225
+ BOOST_INTRUSIVE_FORCEINLINE static pointer priv_static_cast_from(boost::intrusive::detail::false_, const UPtr &uptr) BOOST_NOEXCEPT
226
226
  { return uptr ? pointer_to(*static_cast<element_type*>(to_raw_pointer(uptr))) : pointer(); }
227
227
 
228
228
  //priv_const_cast_from
229
229
  template<class UPtr>
230
- BOOST_INTRUSIVE_FORCEINLINE static pointer priv_const_cast_from(boost::intrusive::detail::true_, const UPtr &uptr)
230
+ BOOST_INTRUSIVE_FORCEINLINE static pointer priv_const_cast_from(boost::intrusive::detail::true_, const UPtr &uptr) BOOST_NOEXCEPT
231
231
  { return Ptr::const_cast_from(uptr); }
232
232
 
233
233
  template<class UPtr>
234
- BOOST_INTRUSIVE_FORCEINLINE static pointer priv_const_cast_from(boost::intrusive::detail::false_, const UPtr &uptr)
234
+ BOOST_INTRUSIVE_FORCEINLINE static pointer priv_const_cast_from(boost::intrusive::detail::false_, const UPtr &uptr) BOOST_NOEXCEPT
235
235
  { return uptr ? pointer_to(const_cast<element_type&>(*uptr)) : pointer(); }
236
236
 
237
237
  //priv_dynamic_cast_from
238
238
  template<class UPtr>
239
- BOOST_INTRUSIVE_FORCEINLINE static pointer priv_dynamic_cast_from(boost::intrusive::detail::true_, const UPtr &uptr)
239
+ BOOST_INTRUSIVE_FORCEINLINE static pointer priv_dynamic_cast_from(boost::intrusive::detail::true_, const UPtr &uptr) BOOST_NOEXCEPT
240
240
  { return Ptr::dynamic_cast_from(uptr); }
241
241
 
242
242
  template<class UPtr>
243
- BOOST_INTRUSIVE_FORCEINLINE static pointer priv_dynamic_cast_from(boost::intrusive::detail::false_, const UPtr &uptr)
243
+ BOOST_INTRUSIVE_FORCEINLINE static pointer priv_dynamic_cast_from(boost::intrusive::detail::false_, const UPtr &uptr) BOOST_NOEXCEPT
244
244
  { return uptr ? pointer_to(dynamic_cast<element_type&>(*uptr)) : pointer(); }
245
245
  ///@endcond
246
246
  };
@@ -288,25 +288,25 @@ struct pointer_traits<T*>
288
288
 
289
289
  //! <b>Returns</b>: addressof(r)
290
290
  //!
291
- BOOST_INTRUSIVE_FORCEINLINE static pointer pointer_to(reference r)
291
+ BOOST_INTRUSIVE_FORCEINLINE static pointer pointer_to(reference r) BOOST_NOEXCEPT
292
292
  { return boost::intrusive::detail::addressof(r); }
293
293
 
294
294
  //! <b>Returns</b>: static_cast<pointer>(uptr)
295
295
  //!
296
296
  template<class U>
297
- BOOST_INTRUSIVE_FORCEINLINE static pointer static_cast_from(U *uptr)
297
+ BOOST_INTRUSIVE_FORCEINLINE static pointer static_cast_from(U *uptr) BOOST_NOEXCEPT
298
298
  { return static_cast<pointer>(uptr); }
299
299
 
300
300
  //! <b>Returns</b>: const_cast<pointer>(uptr)
301
301
  //!
302
302
  template<class U>
303
- BOOST_INTRUSIVE_FORCEINLINE static pointer const_cast_from(U *uptr)
303
+ BOOST_INTRUSIVE_FORCEINLINE static pointer const_cast_from(U *uptr) BOOST_NOEXCEPT
304
304
  { return const_cast<pointer>(uptr); }
305
305
 
306
306
  //! <b>Returns</b>: dynamic_cast<pointer>(uptr)
307
307
  //!
308
308
  template<class U>
309
- BOOST_INTRUSIVE_FORCEINLINE static pointer dynamic_cast_from(U *uptr)
309
+ BOOST_INTRUSIVE_FORCEINLINE static pointer dynamic_cast_from(U *uptr) BOOST_NOEXCEPT
310
310
  { return dynamic_cast<pointer>(uptr); }
311
311
  };
312
312
 
@@ -153,61 +153,61 @@ class rbtree_impl
153
153
  ~rbtree_impl();
154
154
 
155
155
  //! @copydoc ::boost::intrusive::bstree::begin()
156
- iterator begin();
156
+ iterator begin() BOOST_NOEXCEPT;
157
157
 
158
158
  //! @copydoc ::boost::intrusive::bstree::begin()const
159
- const_iterator begin() const;
159
+ const_iterator begin() const BOOST_NOEXCEPT;
160
160
 
161
161
  //! @copydoc ::boost::intrusive::bstree::cbegin()const
162
- const_iterator cbegin() const;
162
+ const_iterator cbegin() const BOOST_NOEXCEPT;
163
163
 
164
164
  //! @copydoc ::boost::intrusive::bstree::end()
165
- iterator end();
165
+ iterator end() BOOST_NOEXCEPT;
166
166
 
167
167
  //! @copydoc ::boost::intrusive::bstree::end()const
168
- const_iterator end() const;
168
+ const_iterator end() const BOOST_NOEXCEPT;
169
169
 
170
170
  //! @copydoc ::boost::intrusive::bstree::cend()const
171
- const_iterator cend() const;
171
+ const_iterator cend() const BOOST_NOEXCEPT;
172
172
 
173
173
  //! @copydoc ::boost::intrusive::bstree::rbegin()
174
- reverse_iterator rbegin();
174
+ reverse_iterator rbegin() BOOST_NOEXCEPT;
175
175
 
176
176
  //! @copydoc ::boost::intrusive::bstree::rbegin()const
177
- const_reverse_iterator rbegin() const;
177
+ const_reverse_iterator rbegin() const BOOST_NOEXCEPT;
178
178
 
179
179
  //! @copydoc ::boost::intrusive::bstree::crbegin()const
180
- const_reverse_iterator crbegin() const;
180
+ const_reverse_iterator crbegin() const BOOST_NOEXCEPT;
181
181
 
182
182
  //! @copydoc ::boost::intrusive::bstree::rend()
183
- reverse_iterator rend();
183
+ reverse_iterator rend() BOOST_NOEXCEPT;
184
184
 
185
185
  //! @copydoc ::boost::intrusive::bstree::rend()const
186
- const_reverse_iterator rend() const;
186
+ const_reverse_iterator rend() const BOOST_NOEXCEPT;
187
187
 
188
188
  //! @copydoc ::boost::intrusive::bstree::crend()const
189
- const_reverse_iterator crend() const;
189
+ const_reverse_iterator crend() const BOOST_NOEXCEPT;
190
190
 
191
191
  //! @copydoc ::boost::intrusive::bstree::root()
192
- iterator root();
192
+ iterator root() BOOST_NOEXCEPT;
193
193
 
194
194
  //! @copydoc ::boost::intrusive::bstree::root()const
195
- const_iterator root() const;
195
+ const_iterator root() const BOOST_NOEXCEPT;
196
196
 
197
197
  //! @copydoc ::boost::intrusive::bstree::croot()const
198
- const_iterator croot() const;
198
+ const_iterator croot() const BOOST_NOEXCEPT;
199
199
 
200
200
  //! @copydoc ::boost::intrusive::bstree::container_from_end_iterator(iterator)
201
- static rbtree_impl &container_from_end_iterator(iterator end_iterator);
201
+ static rbtree_impl &container_from_end_iterator(iterator end_iterator) BOOST_NOEXCEPT;
202
202
 
203
203
  //! @copydoc ::boost::intrusive::bstree::container_from_end_iterator(const_iterator)
204
- static const rbtree_impl &container_from_end_iterator(const_iterator end_iterator);
204
+ static const rbtree_impl &container_from_end_iterator(const_iterator end_iterator) BOOST_NOEXCEPT;
205
205
 
206
206
  //! @copydoc ::boost::intrusive::bstree::container_from_iterator(iterator)
207
- static rbtree_impl &container_from_iterator(iterator it);
207
+ static rbtree_impl &container_from_iterator(iterator it) BOOST_NOEXCEPT;
208
208
 
209
209
  //! @copydoc ::boost::intrusive::bstree::container_from_iterator(const_iterator)
210
- static const rbtree_impl &container_from_iterator(const_iterator it);
210
+ static const rbtree_impl &container_from_iterator(const_iterator it) BOOST_NOEXCEPT;
211
211
 
212
212
  //! @copydoc ::boost::intrusive::bstree::key_comp()const
213
213
  key_compare key_comp() const;
@@ -216,10 +216,10 @@ class rbtree_impl
216
216
  value_compare value_comp() const;
217
217
 
218
218
  //! @copydoc ::boost::intrusive::bstree::empty()const
219
- bool empty() const;
219
+ bool empty() const BOOST_NOEXCEPT;
220
220
 
221
221
  //! @copydoc ::boost::intrusive::bstree::size()const
222
- size_type size() const;
222
+ size_type size() const BOOST_NOEXCEPT;
223
223
 
224
224
  //! @copydoc ::boost::intrusive::bstree::swap
225
225
  void swap(rbtree_impl& other);
@@ -281,26 +281,26 @@ class rbtree_impl
281
281
  (const_iterator hint, const key_type &key, insert_commit_data &commit_data);
282
282
 
283
283
  //! @copydoc ::boost::intrusive::bstree::insert_unique_commit
284
- iterator insert_unique_commit(reference value, const insert_commit_data &commit_data);
284
+ iterator insert_unique_commit(reference value, const insert_commit_data &commit_data) BOOST_NOEXCEPT;
285
285
 
286
286
  //! @copydoc ::boost::intrusive::bstree::insert_unique(Iterator,Iterator)
287
287
  template<class Iterator>
288
288
  void insert_unique(Iterator b, Iterator e);
289
289
 
290
290
  //! @copydoc ::boost::intrusive::bstree::insert_before
291
- iterator insert_before(const_iterator pos, reference value);
291
+ iterator insert_before(const_iterator pos, reference value) BOOST_NOEXCEPT;
292
292
 
293
293
  //! @copydoc ::boost::intrusive::bstree::push_back
294
- void push_back(reference value);
294
+ void push_back(reference value) BOOST_NOEXCEPT;
295
295
 
296
296
  //! @copydoc ::boost::intrusive::bstree::push_front
297
- void push_front(reference value);
297
+ void push_front(reference value) BOOST_NOEXCEPT;
298
298
 
299
299
  //! @copydoc ::boost::intrusive::bstree::erase(const_iterator)
300
- iterator erase(const_iterator i);
300
+ iterator erase(const_iterator i) BOOST_NOEXCEPT;
301
301
 
302
302
  //! @copydoc ::boost::intrusive::bstree::erase(const_iterator,const_iterator)
303
- iterator erase(const_iterator b, const_iterator e);
303
+ iterator erase(const_iterator b, const_iterator e) BOOST_NOEXCEPT;
304
304
 
305
305
  //! @copydoc ::boost::intrusive::bstree::erase(const key_type &key)
306
306
  size_type erase(const key_type &key);
@@ -311,11 +311,11 @@ class rbtree_impl
311
311
 
312
312
  //! @copydoc ::boost::intrusive::bstree::erase_and_dispose(const_iterator,Disposer)
313
313
  template<class Disposer>
314
- iterator erase_and_dispose(const_iterator i, Disposer disposer);
314
+ iterator erase_and_dispose(const_iterator i, Disposer disposer) BOOST_NOEXCEPT;
315
315
 
316
316
  //! @copydoc ::boost::intrusive::bstree::erase_and_dispose(const_iterator,const_iterator,Disposer)
317
317
  template<class Disposer>
318
- iterator erase_and_dispose(const_iterator b, const_iterator e, Disposer disposer);
318
+ iterator erase_and_dispose(const_iterator b, const_iterator e, Disposer disposer) BOOST_NOEXCEPT;
319
319
 
320
320
  //! @copydoc ::boost::intrusive::bstree::erase_and_dispose(const key_type &, Disposer)
321
321
  template<class Disposer>
@@ -326,11 +326,11 @@ class rbtree_impl
326
326
  size_type erase_and_dispose(const KeyType& key, KeyTypeKeyCompare comp, Disposer disposer);
327
327
 
328
328
  //! @copydoc ::boost::intrusive::bstree::clear
329
- void clear();
329
+ void clear() BOOST_NOEXCEPT;
330
330
 
331
331
  //! @copydoc ::boost::intrusive::bstree::clear_and_dispose
332
332
  template<class Disposer>
333
- void clear_and_dispose(Disposer disposer);
333
+ void clear_and_dispose(Disposer disposer) BOOST_NOEXCEPT;
334
334
 
335
335
  //! @copydoc ::boost::intrusive::bstree::count(const key_type &)const
336
336
  size_type count(const key_type &key) const;
@@ -416,28 +416,28 @@ class rbtree_impl
416
416
  (const KeyType& lower_key, const KeyType& upper_key, KeyTypeKeyCompare comp, bool left_closed, bool right_closed) const;
417
417
 
418
418
  //! @copydoc ::boost::intrusive::bstree::s_iterator_to(reference)
419
- static iterator s_iterator_to(reference value);
419
+ static iterator s_iterator_to(reference value) BOOST_NOEXCEPT;
420
420
 
421
421
  //! @copydoc ::boost::intrusive::bstree::s_iterator_to(const_reference)
422
- static const_iterator s_iterator_to(const_reference value);
422
+ static const_iterator s_iterator_to(const_reference value) BOOST_NOEXCEPT;
423
423
 
424
424
  //! @copydoc ::boost::intrusive::bstree::iterator_to(reference)
425
- iterator iterator_to(reference value);
425
+ iterator iterator_to(reference value) BOOST_NOEXCEPT;
426
426
 
427
427
  //! @copydoc ::boost::intrusive::bstree::iterator_to(const_reference)const
428
- const_iterator iterator_to(const_reference value) const;
428
+ const_iterator iterator_to(const_reference value) const BOOST_NOEXCEPT;
429
429
 
430
430
  //! @copydoc ::boost::intrusive::bstree::init_node(reference)
431
- static void init_node(reference value);
431
+ static void init_node(reference value) BOOST_NOEXCEPT;
432
432
 
433
433
  //! @copydoc ::boost::intrusive::bstree::unlink_leftmost_without_rebalance
434
- pointer unlink_leftmost_without_rebalance();
434
+ pointer unlink_leftmost_without_rebalance() BOOST_NOEXCEPT;
435
435
 
436
436
  //! @copydoc ::boost::intrusive::bstree::replace_node
437
- void replace_node(iterator replace_this, reference with_this);
437
+ void replace_node(iterator replace_this, reference with_this) BOOST_NOEXCEPT;
438
438
 
439
439
  //! @copydoc ::boost::intrusive::bstree::remove_node
440
- void remove_node(reference value);
440
+ void remove_node(reference value) BOOST_NOEXCEPT;
441
441
 
442
442
  //! @copydoc ::boost::intrusive::bstree::merge_unique(bstree<T, Options2...>&)
443
443
  template<class T, class ...Options2>
@@ -568,16 +568,16 @@ class rbtree
568
568
  BOOST_INTRUSIVE_FORCEINLINE void clone_from(BOOST_RV_REF(rbtree) src, Cloner cloner, Disposer disposer)
569
569
  { Base::clone_from(BOOST_MOVE_BASE(Base, src), cloner, disposer); }
570
570
 
571
- BOOST_INTRUSIVE_FORCEINLINE static rbtree &container_from_end_iterator(iterator end_iterator)
571
+ BOOST_INTRUSIVE_FORCEINLINE static rbtree &container_from_end_iterator(iterator end_iterator) BOOST_NOEXCEPT
572
572
  { return static_cast<rbtree &>(Base::container_from_end_iterator(end_iterator)); }
573
573
 
574
- BOOST_INTRUSIVE_FORCEINLINE static const rbtree &container_from_end_iterator(const_iterator end_iterator)
574
+ BOOST_INTRUSIVE_FORCEINLINE static const rbtree &container_from_end_iterator(const_iterator end_iterator) BOOST_NOEXCEPT
575
575
  { return static_cast<const rbtree &>(Base::container_from_end_iterator(end_iterator)); }
576
576
 
577
- BOOST_INTRUSIVE_FORCEINLINE static rbtree &container_from_iterator(iterator it)
577
+ BOOST_INTRUSIVE_FORCEINLINE static rbtree &container_from_iterator(iterator it) BOOST_NOEXCEPT
578
578
  { return static_cast<rbtree &>(Base::container_from_iterator(it)); }
579
579
 
580
- BOOST_INTRUSIVE_FORCEINLINE static const rbtree &container_from_iterator(const_iterator it)
580
+ BOOST_INTRUSIVE_FORCEINLINE static const rbtree &container_from_iterator(const_iterator it) BOOST_NOEXCEPT
581
581
  { return static_cast<const rbtree &>(Base::container_from_iterator(it)); }
582
582
  };
583
583