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
@@ -191,21 +191,21 @@ class rbtree_algorithms
191
191
  #ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
192
192
 
193
193
  //! @copydoc ::boost::intrusive::bstree_algorithms::get_header(const const_node_ptr&)
194
- static node_ptr get_header(const const_node_ptr & n);
194
+ static node_ptr get_header(const const_node_ptr & n) BOOST_NOEXCEPT;
195
195
 
196
196
  //! @copydoc ::boost::intrusive::bstree_algorithms::begin_node
197
- static node_ptr begin_node(const const_node_ptr & header);
197
+ static node_ptr begin_node(const const_node_ptr & header) BOOST_NOEXCEPT;
198
198
 
199
199
  //! @copydoc ::boost::intrusive::bstree_algorithms::end_node
200
- static node_ptr end_node(const const_node_ptr & header);
200
+ static node_ptr end_node(const const_node_ptr & header) BOOST_NOEXCEPT;
201
201
 
202
202
  //! @copydoc ::boost::intrusive::bstree_algorithms::swap_tree
203
- static void swap_tree(node_ptr header1, node_ptr header2);
203
+ static void swap_tree(node_ptr header1, node_ptr header2) BOOST_NOEXCEPT;
204
204
 
205
205
  #endif //#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
206
206
 
207
207
  //! @copydoc ::boost::intrusive::bstree_algorithms::swap_nodes(node_ptr,node_ptr)
208
- static void swap_nodes(node_ptr node1, node_ptr node2)
208
+ static void swap_nodes(node_ptr node1, node_ptr node2) BOOST_NOEXCEPT
209
209
  {
210
210
  if(node1 == node2)
211
211
  return;
@@ -215,7 +215,7 @@ class rbtree_algorithms
215
215
  }
216
216
 
217
217
  //! @copydoc ::boost::intrusive::bstree_algorithms::swap_nodes(node_ptr,node_ptr,node_ptr,node_ptr)
218
- static void swap_nodes(node_ptr node1, node_ptr header1, node_ptr node2, node_ptr header2)
218
+ static void swap_nodes(node_ptr node1, node_ptr header1, node_ptr node2, node_ptr header2) BOOST_NOEXCEPT
219
219
  {
220
220
  if(node1 == node2) return;
221
221
 
@@ -227,7 +227,7 @@ class rbtree_algorithms
227
227
  }
228
228
 
229
229
  //! @copydoc ::boost::intrusive::bstree_algorithms::replace_node(node_ptr,node_ptr)
230
- static void replace_node(node_ptr node_to_be_replaced, node_ptr new_node)
230
+ static void replace_node(node_ptr node_to_be_replaced, node_ptr new_node) BOOST_NOEXCEPT
231
231
  {
232
232
  if(node_to_be_replaced == new_node)
233
233
  return;
@@ -235,14 +235,14 @@ class rbtree_algorithms
235
235
  }
236
236
 
237
237
  //! @copydoc ::boost::intrusive::bstree_algorithms::replace_node(node_ptr,node_ptr,node_ptr)
238
- static void replace_node(node_ptr node_to_be_replaced, node_ptr header, node_ptr new_node)
238
+ static void replace_node(node_ptr node_to_be_replaced, node_ptr header, node_ptr new_node) BOOST_NOEXCEPT
239
239
  {
240
240
  bstree_algo::replace_node(node_to_be_replaced, header, new_node);
241
241
  NodeTraits::set_color(new_node, NodeTraits::get_color(node_to_be_replaced));
242
242
  }
243
243
 
244
244
  //! @copydoc ::boost::intrusive::bstree_algorithms::unlink(node_ptr)
245
- static void unlink(const node_ptr& node)
245
+ static void unlink(const node_ptr& node) BOOST_NOEXCEPT
246
246
  {
247
247
  node_ptr x = NodeTraits::get_parent(node);
248
248
  if(x){
@@ -254,33 +254,33 @@ class rbtree_algorithms
254
254
 
255
255
  #ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
256
256
  //! @copydoc ::boost::intrusive::bstree_algorithms::unlink_leftmost_without_rebalance
257
- static node_ptr unlink_leftmost_without_rebalance(const node_ptr & header);
257
+ static node_ptr unlink_leftmost_without_rebalance(const node_ptr & header) BOOST_NOEXCEPT;
258
258
 
259
259
  //! @copydoc ::boost::intrusive::bstree_algorithms::unique(const const_node_ptr&)
260
- static bool unique(const const_node_ptr & node);
260
+ static bool unique(const const_node_ptr & node) BOOST_NOEXCEPT;
261
261
 
262
262
  //! @copydoc ::boost::intrusive::bstree_algorithms::size(const const_node_ptr&)
263
- static std::size_t size(const const_node_ptr & header);
263
+ static std::size_t size(const const_node_ptr & header) BOOST_NOEXCEPT;
264
264
 
265
265
  //! @copydoc ::boost::intrusive::bstree_algorithms::next_node(const node_ptr&)
266
- static node_ptr next_node(const node_ptr & node);
266
+ static node_ptr next_node(const node_ptr & node) BOOST_NOEXCEPT;
267
267
 
268
268
  //! @copydoc ::boost::intrusive::bstree_algorithms::prev_node(const node_ptr&)
269
- static node_ptr prev_node(const node_ptr & node);
269
+ static node_ptr prev_node(const node_ptr & node) BOOST_NOEXCEPT;
270
270
 
271
271
  //! @copydoc ::boost::intrusive::bstree_algorithms::init(node_ptr)
272
- static void init(const node_ptr & node);
272
+ static void init(const node_ptr & node) BOOST_NOEXCEPT;
273
273
  #endif //#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
274
274
 
275
275
  //! @copydoc ::boost::intrusive::bstree_algorithms::init_header(node_ptr)
276
- BOOST_INTRUSIVE_FORCEINLINE static void init_header(node_ptr header)
276
+ BOOST_INTRUSIVE_FORCEINLINE static void init_header(node_ptr header) BOOST_NOEXCEPT
277
277
  {
278
278
  bstree_algo::init_header(header);
279
279
  NodeTraits::set_color(header, NodeTraits::red());
280
280
  }
281
281
 
282
282
  //! @copydoc ::boost::intrusive::bstree_algorithms::erase(node_ptr,node_ptr)
283
- static node_ptr erase(node_ptr header, node_ptr z)
283
+ static node_ptr erase(node_ptr header, node_ptr z) BOOST_NOEXCEPT
284
284
  {
285
285
  typename bstree_algo::data_for_rebalance info;
286
286
  bstree_algo::erase(header, z, info);
@@ -325,7 +325,7 @@ class rbtree_algorithms
325
325
  #ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
326
326
  //! @copydoc ::boost::intrusive::bstree_algorithms::clear_and_dispose(const node_ptr&,Disposer)
327
327
  template<class Disposer>
328
- static void clear_and_dispose(const node_ptr & header, Disposer disposer);
328
+ static void clear_and_dispose(const node_ptr & header, Disposer disposer) BOOST_NOEXCEPT;
329
329
 
330
330
  //! @copydoc ::boost::intrusive::bstree_algorithms::lower_bound(const const_node_ptr&,const KeyType&,KeyNodePtrCompare)
331
331
  template<class KeyType, class KeyNodePtrCompare>
@@ -391,7 +391,7 @@ class rbtree_algorithms
391
391
 
392
392
  //! @copydoc ::boost::intrusive::bstree_algorithms::insert_before(node_ptr,node_ptr,node_ptr)
393
393
  static node_ptr insert_before
394
- (node_ptr header, node_ptr pos, node_ptr new_node)
394
+ (node_ptr header, node_ptr pos, node_ptr new_node) BOOST_NOEXCEPT
395
395
  {
396
396
  bstree_algo::insert_before(header, pos, new_node);
397
397
  rebalance_after_insertion(header, new_node);
@@ -399,14 +399,14 @@ class rbtree_algorithms
399
399
  }
400
400
 
401
401
  //! @copydoc ::boost::intrusive::bstree_algorithms::push_back(node_ptr,node_ptr)
402
- static void push_back(node_ptr header, node_ptr new_node)
402
+ static void push_back(node_ptr header, node_ptr new_node) BOOST_NOEXCEPT
403
403
  {
404
404
  bstree_algo::push_back(header, new_node);
405
405
  rebalance_after_insertion(header, new_node);
406
406
  }
407
407
 
408
408
  //! @copydoc ::boost::intrusive::bstree_algorithms::push_front(node_ptr,node_ptr)
409
- static void push_front(node_ptr header, node_ptr new_node)
409
+ static void push_front(node_ptr header, node_ptr new_node) BOOST_NOEXCEPT
410
410
  {
411
411
  bstree_algo::push_front(header, new_node);
412
412
  rebalance_after_insertion(header, new_node);
@@ -428,14 +428,14 @@ class rbtree_algorithms
428
428
 
429
429
  //! @copydoc ::boost::intrusive::bstree_algorithms::insert_unique_commit(node_ptr,node_ptr,const insert_commit_data&)
430
430
  static void insert_unique_commit
431
- (node_ptr header, node_ptr new_value, const insert_commit_data &commit_data)
431
+ (node_ptr header, node_ptr new_value, const insert_commit_data &commit_data) BOOST_NOEXCEPT
432
432
  {
433
433
  bstree_algo::insert_unique_commit(header, new_value, commit_data);
434
434
  rebalance_after_insertion(header, new_value);
435
435
  }
436
436
 
437
437
  //! @copydoc ::boost::intrusive::bstree_algorithms::is_header
438
- static bool is_header(const const_node_ptr & p)
438
+ static bool is_header(const const_node_ptr & p) BOOST_NOEXCEPT
439
439
  {
440
440
  return NodeTraits::get_color(p) == NodeTraits::red() &&
441
441
  bstree_algo::is_header(p);
@@ -445,7 +445,7 @@ class rbtree_algorithms
445
445
  private:
446
446
 
447
447
  static void rebalance_after_erasure
448
- ( node_ptr header, node_ptr z, const typename bstree_algo::data_for_rebalance &info)
448
+ ( node_ptr header, node_ptr z, const typename bstree_algo::data_for_rebalance &info) BOOST_NOEXCEPT
449
449
  {
450
450
  color new_z_color;
451
451
  if(info.y != z){
@@ -461,7 +461,7 @@ class rbtree_algorithms
461
461
  }
462
462
  }
463
463
 
464
- static void rebalance_after_erasure_restore_invariants(node_ptr header, node_ptr x, node_ptr x_parent)
464
+ static void rebalance_after_erasure_restore_invariants(node_ptr header, node_ptr x, node_ptr x_parent) BOOST_NOEXCEPT
465
465
  {
466
466
  while(1){
467
467
  if(x_parent == header || (x && NodeTraits::get_color(x) != NodeTraits::black())){
@@ -545,7 +545,7 @@ class rbtree_algorithms
545
545
  NodeTraits::set_color(x, NodeTraits::black());
546
546
  }
547
547
 
548
- static void rebalance_after_insertion(node_ptr header, node_ptr p)
548
+ static void rebalance_after_insertion(node_ptr header, node_ptr p) BOOST_NOEXCEPT
549
549
  {
550
550
  NodeTraits::set_color(p, NodeTraits::red());
551
551
  while(1){
@@ -120,61 +120,61 @@ class set_impl
120
120
  ~set_impl();
121
121
 
122
122
  //! @copydoc ::boost::intrusive::rbtree::begin()
123
- iterator begin();
123
+ iterator begin() BOOST_NOEXCEPT;
124
124
 
125
125
  //! @copydoc ::boost::intrusive::rbtree::begin()const
126
- const_iterator begin() const;
126
+ const_iterator begin() const BOOST_NOEXCEPT;
127
127
 
128
128
  //! @copydoc ::boost::intrusive::rbtree::cbegin()const
129
- const_iterator cbegin() const;
129
+ const_iterator cbegin() const BOOST_NOEXCEPT;
130
130
 
131
131
  //! @copydoc ::boost::intrusive::rbtree::end()
132
- iterator end();
132
+ iterator end() BOOST_NOEXCEPT;
133
133
 
134
134
  //! @copydoc ::boost::intrusive::rbtree::end()const
135
- const_iterator end() const;
135
+ const_iterator end() const BOOST_NOEXCEPT;
136
136
 
137
137
  //! @copydoc ::boost::intrusive::rbtree::cend()const
138
- const_iterator cend() const;
138
+ const_iterator cend() const BOOST_NOEXCEPT;
139
139
 
140
140
  //! @copydoc ::boost::intrusive::rbtree::rbegin()
141
- reverse_iterator rbegin();
141
+ reverse_iterator rbegin() BOOST_NOEXCEPT;
142
142
 
143
143
  //! @copydoc ::boost::intrusive::rbtree::rbegin()const
144
- const_reverse_iterator rbegin() const;
144
+ const_reverse_iterator rbegin() const BOOST_NOEXCEPT;
145
145
 
146
146
  //! @copydoc ::boost::intrusive::rbtree::crbegin()const
147
- const_reverse_iterator crbegin() const;
147
+ const_reverse_iterator crbegin() const BOOST_NOEXCEPT;
148
148
 
149
149
  //! @copydoc ::boost::intrusive::rbtree::rend()
150
- reverse_iterator rend();
150
+ reverse_iterator rend() BOOST_NOEXCEPT;
151
151
 
152
152
  //! @copydoc ::boost::intrusive::rbtree::rend()const
153
- const_reverse_iterator rend() const;
153
+ const_reverse_iterator rend() const BOOST_NOEXCEPT;
154
154
 
155
155
  //! @copydoc ::boost::intrusive::rbtree::crend()const
156
- const_reverse_iterator crend() const;
156
+ const_reverse_iterator crend() const BOOST_NOEXCEPT;
157
157
 
158
158
  //! @copydoc ::boost::intrusive::rbtree::root()
159
- iterator root();
159
+ iterator root() BOOST_NOEXCEPT;
160
160
 
161
161
  //! @copydoc ::boost::intrusive::rbtree::root()const
162
- const_iterator root() const;
162
+ const_iterator root() const BOOST_NOEXCEPT;
163
163
 
164
164
  //! @copydoc ::boost::intrusive::rbtree::croot()const
165
- const_iterator croot() const;
165
+ const_iterator croot() const BOOST_NOEXCEPT;
166
166
 
167
167
  //! @copydoc ::boost::intrusive::rbtree::container_from_end_iterator(iterator)
168
- static set_impl &container_from_end_iterator(iterator end_iterator);
168
+ static set_impl &container_from_end_iterator(iterator end_iterator) BOOST_NOEXCEPT;
169
169
 
170
170
  //! @copydoc ::boost::intrusive::rbtree::container_from_end_iterator(const_iterator)
171
- static const set_impl &container_from_end_iterator(const_iterator end_iterator);
171
+ static const set_impl &container_from_end_iterator(const_iterator end_iterator) BOOST_NOEXCEPT;
172
172
 
173
173
  //! @copydoc ::boost::intrusive::rbtree::container_from_iterator(iterator)
174
- static set_impl &container_from_iterator(iterator it);
174
+ static set_impl &container_from_iterator(iterator it) BOOST_NOEXCEPT;
175
175
 
176
176
  //! @copydoc ::boost::intrusive::rbtree::container_from_iterator(const_iterator)
177
- static const set_impl &container_from_iterator(const_iterator it);
177
+ static const set_impl &container_from_iterator(const_iterator it) BOOST_NOEXCEPT;
178
178
 
179
179
  //! @copydoc ::boost::intrusive::rbtree::key_comp()const
180
180
  key_compare key_comp() const;
@@ -183,10 +183,10 @@ class set_impl
183
183
  value_compare value_comp() const;
184
184
 
185
185
  //! @copydoc ::boost::intrusive::rbtree::empty()const
186
- bool empty() const;
186
+ bool empty() const BOOST_NOEXCEPT;
187
187
 
188
188
  //! @copydoc ::boost::intrusive::rbtree::size()const
189
- size_type size() const;
189
+ size_type size() const BOOST_NOEXCEPT;
190
190
 
191
191
  //! @copydoc ::boost::intrusive::rbtree::swap
192
192
  void swap(set_impl& other);
@@ -244,24 +244,24 @@ class set_impl
244
244
  { tree_type::insert_unique(b, e); }
245
245
 
246
246
  //! @copydoc ::boost::intrusive::rbtree::insert_unique_commit
247
- iterator insert_commit(reference value, const insert_commit_data &commit_data)
247
+ iterator insert_commit(reference value, const insert_commit_data &commit_data) BOOST_NOEXCEPT
248
248
  { return tree_type::insert_unique_commit(value, commit_data); }
249
249
 
250
250
  #ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
251
251
  //! @copydoc ::boost::intrusive::rbtree::insert_before
252
- iterator insert_before(const_iterator pos, reference value);
252
+ iterator insert_before(const_iterator pos, reference value) BOOST_NOEXCEPT;
253
253
 
254
254
  //! @copydoc ::boost::intrusive::rbtree::push_back
255
- void push_back(reference value);
255
+ void push_back(reference value) BOOST_NOEXCEPT;
256
256
 
257
257
  //! @copydoc ::boost::intrusive::rbtree::push_front
258
- void push_front(reference value);
258
+ void push_front(reference value) BOOST_NOEXCEPT;
259
259
 
260
260
  //! @copydoc ::boost::intrusive::rbtree::erase(const_iterator)
261
- iterator erase(const_iterator i);
261
+ iterator erase(const_iterator i) BOOST_NOEXCEPT;
262
262
 
263
263
  //! @copydoc ::boost::intrusive::rbtree::erase(const_iterator,const_iterator)
264
- iterator erase(const_iterator b, const_iterator e);
264
+ iterator erase(const_iterator b, const_iterator e) BOOST_NOEXCEPT;
265
265
 
266
266
  //! @copydoc ::boost::intrusive::rbtree::erase(const key_type &)
267
267
  size_type erase(const key_type &key);
@@ -272,11 +272,11 @@ class set_impl
272
272
 
273
273
  //! @copydoc ::boost::intrusive::rbtree::erase_and_dispose(const_iterator,Disposer)
274
274
  template<class Disposer>
275
- iterator erase_and_dispose(const_iterator i, Disposer disposer);
275
+ iterator erase_and_dispose(const_iterator i, Disposer disposer) BOOST_NOEXCEPT;
276
276
 
277
277
  //! @copydoc ::boost::intrusive::rbtree::erase_and_dispose(const_iterator,const_iterator,Disposer)
278
278
  template<class Disposer>
279
- iterator erase_and_dispose(const_iterator b, const_iterator e, Disposer disposer);
279
+ iterator erase_and_dispose(const_iterator b, const_iterator e, Disposer disposer) BOOST_NOEXCEPT;
280
280
 
281
281
  //! @copydoc ::boost::intrusive::rbtree::erase_and_dispose(const key_type &, Disposer)
282
282
  template<class Disposer>
@@ -287,11 +287,11 @@ class set_impl
287
287
  size_type erase_and_dispose(const KeyType& key, KeyTypeKeyCompare comp, Disposer disposer);
288
288
 
289
289
  //! @copydoc ::boost::intrusive::rbtree::clear
290
- void clear();
290
+ void clear() BOOST_NOEXCEPT;
291
291
 
292
292
  //! @copydoc ::boost::intrusive::rbtree::clear_and_dispose
293
293
  template<class Disposer>
294
- void clear_and_dispose(Disposer disposer);
294
+ void clear_and_dispose(Disposer disposer) BOOST_NOEXCEPT;
295
295
 
296
296
  #endif // #ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
297
297
 
@@ -391,28 +391,28 @@ class set_impl
391
391
  (const KeyType& lower_key, const KeyType& upper_key, KeyTypeKeyCompare comp, bool left_closed, bool right_closed) const;
392
392
 
393
393
  //! @copydoc ::boost::intrusive::rbtree::s_iterator_to(reference)
394
- static iterator s_iterator_to(reference value);
394
+ static iterator s_iterator_to(reference value) BOOST_NOEXCEPT;
395
395
 
396
396
  //! @copydoc ::boost::intrusive::rbtree::s_iterator_to(const_reference)
397
- static const_iterator s_iterator_to(const_reference value);
397
+ static const_iterator s_iterator_to(const_reference value) BOOST_NOEXCEPT;
398
398
 
399
399
  //! @copydoc ::boost::intrusive::rbtree::iterator_to(reference)
400
- iterator iterator_to(reference value);
400
+ iterator iterator_to(reference value) BOOST_NOEXCEPT;
401
401
 
402
402
  //! @copydoc ::boost::intrusive::rbtree::iterator_to(const_reference)const
403
- const_iterator iterator_to(const_reference value) const;
403
+ const_iterator iterator_to(const_reference value) const BOOST_NOEXCEPT;
404
404
 
405
405
  //! @copydoc ::boost::intrusive::rbtree::init_node(reference)
406
- static void init_node(reference value);
406
+ static void init_node(reference value) BOOST_NOEXCEPT;
407
407
 
408
408
  //! @copydoc ::boost::intrusive::rbtree::unlink_leftmost_without_rebalance
409
- pointer unlink_leftmost_without_rebalance();
409
+ pointer unlink_leftmost_without_rebalance() BOOST_NOEXCEPT;
410
410
 
411
411
  //! @copydoc ::boost::intrusive::rbtree::replace_node
412
- void replace_node(iterator replace_this, reference with_this);
412
+ void replace_node(iterator replace_this, reference with_this) BOOST_NOEXCEPT;
413
413
 
414
414
  //! @copydoc ::boost::intrusive::rbtree::remove_node
415
- void remove_node(reference value);
415
+ void remove_node(reference value) BOOST_NOEXCEPT;
416
416
 
417
417
  //! @copydoc ::boost::intrusive::rbtree::merge_unique
418
418
  template<class ...Options2>
@@ -555,16 +555,16 @@ class set
555
555
  BOOST_INTRUSIVE_FORCEINLINE void clone_from(BOOST_RV_REF(set) src, Cloner cloner, Disposer disposer)
556
556
  { Base::clone_from(BOOST_MOVE_BASE(Base, src), cloner, disposer); }
557
557
 
558
- BOOST_INTRUSIVE_FORCEINLINE static set &container_from_end_iterator(iterator end_iterator)
558
+ BOOST_INTRUSIVE_FORCEINLINE static set &container_from_end_iterator(iterator end_iterator) BOOST_NOEXCEPT
559
559
  { return static_cast<set &>(Base::container_from_end_iterator(end_iterator)); }
560
560
 
561
- BOOST_INTRUSIVE_FORCEINLINE static const set &container_from_end_iterator(const_iterator end_iterator)
561
+ BOOST_INTRUSIVE_FORCEINLINE static const set &container_from_end_iterator(const_iterator end_iterator) BOOST_NOEXCEPT
562
562
  { return static_cast<const set &>(Base::container_from_end_iterator(end_iterator)); }
563
563
 
564
- BOOST_INTRUSIVE_FORCEINLINE static set &container_from_iterator(iterator it)
564
+ BOOST_INTRUSIVE_FORCEINLINE static set &container_from_iterator(iterator it) BOOST_NOEXCEPT
565
565
  { return static_cast<set &>(Base::container_from_iterator(it)); }
566
566
 
567
- BOOST_INTRUSIVE_FORCEINLINE static const set &container_from_iterator(const_iterator it)
567
+ BOOST_INTRUSIVE_FORCEINLINE static const set &container_from_iterator(const_iterator it) BOOST_NOEXCEPT
568
568
  { return static_cast<const set &>(Base::container_from_iterator(it)); }
569
569
  };
570
570
 
@@ -657,61 +657,61 @@ class multiset_impl
657
657
  ~multiset_impl();
658
658
 
659
659
  //! @copydoc ::boost::intrusive::rbtree::begin()
660
- iterator begin();
660
+ iterator begin() BOOST_NOEXCEPT;
661
661
 
662
662
  //! @copydoc ::boost::intrusive::rbtree::begin()const
663
- const_iterator begin() const;
663
+ const_iterator begin() const BOOST_NOEXCEPT;
664
664
 
665
665
  //! @copydoc ::boost::intrusive::rbtree::cbegin()const
666
- const_iterator cbegin() const;
666
+ const_iterator cbegin() const BOOST_NOEXCEPT;
667
667
 
668
668
  //! @copydoc ::boost::intrusive::rbtree::end()
669
- iterator end();
669
+ iterator end() BOOST_NOEXCEPT;
670
670
 
671
671
  //! @copydoc ::boost::intrusive::rbtree::end()const
672
- const_iterator end() const;
672
+ const_iterator end() const BOOST_NOEXCEPT;
673
673
 
674
674
  //! @copydoc ::boost::intrusive::rbtree::cend()const
675
- const_iterator cend() const;
675
+ const_iterator cend() const BOOST_NOEXCEPT;
676
676
 
677
677
  //! @copydoc ::boost::intrusive::rbtree::rbegin()
678
- reverse_iterator rbegin();
678
+ reverse_iterator rbegin() BOOST_NOEXCEPT;
679
679
 
680
680
  //! @copydoc ::boost::intrusive::rbtree::rbegin()const
681
- const_reverse_iterator rbegin() const;
681
+ const_reverse_iterator rbegin() const BOOST_NOEXCEPT;
682
682
 
683
683
  //! @copydoc ::boost::intrusive::rbtree::crbegin()const
684
- const_reverse_iterator crbegin() const;
684
+ const_reverse_iterator crbegin() const BOOST_NOEXCEPT;
685
685
 
686
686
  //! @copydoc ::boost::intrusive::rbtree::rend()
687
- reverse_iterator rend();
687
+ reverse_iterator rend() BOOST_NOEXCEPT;
688
688
 
689
689
  //! @copydoc ::boost::intrusive::rbtree::rend()const
690
- const_reverse_iterator rend() const;
690
+ const_reverse_iterator rend() const BOOST_NOEXCEPT;
691
691
 
692
692
  //! @copydoc ::boost::intrusive::rbtree::crend()const
693
- const_reverse_iterator crend() const;
693
+ const_reverse_iterator crend() const BOOST_NOEXCEPT;
694
694
 
695
695
  //! @copydoc ::boost::intrusive::rbtree::root()
696
- iterator root();
696
+ iterator root() BOOST_NOEXCEPT;
697
697
 
698
698
  //! @copydoc ::boost::intrusive::rbtree::root()const
699
- const_iterator root() const;
699
+ const_iterator root() const BOOST_NOEXCEPT;
700
700
 
701
701
  //! @copydoc ::boost::intrusive::rbtree::croot()const
702
- const_iterator croot() const;
702
+ const_iterator croot() const BOOST_NOEXCEPT;
703
703
 
704
704
  //! @copydoc ::boost::intrusive::rbtree::container_from_end_iterator(iterator)
705
- static multiset_impl &container_from_end_iterator(iterator end_iterator);
705
+ static multiset_impl &container_from_end_iterator(iterator end_iterator) BOOST_NOEXCEPT;
706
706
 
707
707
  //! @copydoc ::boost::intrusive::rbtree::container_from_end_iterator(const_iterator)
708
- static const multiset_impl &container_from_end_iterator(const_iterator end_iterator);
708
+ static const multiset_impl &container_from_end_iterator(const_iterator end_iterator) BOOST_NOEXCEPT;
709
709
 
710
710
  //! @copydoc ::boost::intrusive::rbtree::container_from_iterator(iterator)
711
- static multiset_impl &container_from_iterator(iterator it);
711
+ static multiset_impl &container_from_iterator(iterator it) BOOST_NOEXCEPT;
712
712
 
713
713
  //! @copydoc ::boost::intrusive::rbtree::container_from_iterator(const_iterator)
714
- static const multiset_impl &container_from_iterator(const_iterator it);
714
+ static const multiset_impl &container_from_iterator(const_iterator it) BOOST_NOEXCEPT;
715
715
 
716
716
  //! @copydoc ::boost::intrusive::rbtree::key_comp()const
717
717
  key_compare key_comp() const;
@@ -720,10 +720,10 @@ class multiset_impl
720
720
  value_compare value_comp() const;
721
721
 
722
722
  //! @copydoc ::boost::intrusive::rbtree::empty()const
723
- bool empty() const;
723
+ bool empty() const BOOST_NOEXCEPT;
724
724
 
725
725
  //! @copydoc ::boost::intrusive::rbtree::size()const
726
- size_type size() const;
726
+ size_type size() const BOOST_NOEXCEPT;
727
727
 
728
728
  //! @copydoc ::boost::intrusive::rbtree::swap
729
729
  void swap(multiset_impl& other);
@@ -758,19 +758,19 @@ class multiset_impl
758
758
 
759
759
  #ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
760
760
  //! @copydoc ::boost::intrusive::rbtree::insert_before
761
- iterator insert_before(const_iterator pos, reference value);
761
+ iterator insert_before(const_iterator pos, reference value) BOOST_NOEXCEPT;
762
762
 
763
763
  //! @copydoc ::boost::intrusive::rbtree::push_back
764
- void push_back(reference value);
764
+ void push_back(reference value) BOOST_NOEXCEPT;
765
765
 
766
766
  //! @copydoc ::boost::intrusive::rbtree::push_front
767
- void push_front(reference value);
767
+ void push_front(reference value) BOOST_NOEXCEPT;
768
768
 
769
769
  //! @copydoc ::boost::intrusive::rbtree::erase(const_iterator)
770
- iterator erase(const_iterator i);
770
+ iterator erase(const_iterator i) BOOST_NOEXCEPT;
771
771
 
772
772
  //! @copydoc ::boost::intrusive::rbtree::erase(const_iterator,const_iterator)
773
- iterator erase(const_iterator b, const_iterator e);
773
+ iterator erase(const_iterator b, const_iterator e) BOOST_NOEXCEPT;
774
774
 
775
775
  //! @copydoc ::boost::intrusive::rbtree::erase(const key_type &)
776
776
  size_type erase(const key_type &key);
@@ -781,11 +781,11 @@ class multiset_impl
781
781
 
782
782
  //! @copydoc ::boost::intrusive::rbtree::erase_and_dispose(const_iterator,Disposer)
783
783
  template<class Disposer>
784
- iterator erase_and_dispose(const_iterator i, Disposer disposer);
784
+ iterator erase_and_dispose(const_iterator i, Disposer disposer) BOOST_NOEXCEPT;
785
785
 
786
786
  //! @copydoc ::boost::intrusive::rbtree::erase_and_dispose(const_iterator,const_iterator,Disposer)
787
787
  template<class Disposer>
788
- iterator erase_and_dispose(const_iterator b, const_iterator e, Disposer disposer);
788
+ iterator erase_and_dispose(const_iterator b, const_iterator e, Disposer disposer) BOOST_NOEXCEPT;
789
789
 
790
790
  //! @copydoc ::boost::intrusive::rbtree::erase_and_dispose(const key_type &, Disposer)
791
791
  template<class Disposer>
@@ -796,11 +796,11 @@ class multiset_impl
796
796
  size_type erase_and_dispose(const KeyType& key, KeyTypeKeyCompare comp, Disposer disposer);
797
797
 
798
798
  //! @copydoc ::boost::intrusive::rbtree::clear
799
- void clear();
799
+ void clear() BOOST_NOEXCEPT;
800
800
 
801
801
  //! @copydoc ::boost::intrusive::rbtree::clear_and_dispose
802
802
  template<class Disposer>
803
- void clear_and_dispose(Disposer disposer);
803
+ void clear_and_dispose(Disposer disposer) BOOST_NOEXCEPT;
804
804
 
805
805
  //! @copydoc ::boost::intrusive::rbtree::count(const key_type &)const
806
806
  size_type count(const key_type &key) const;
@@ -886,28 +886,28 @@ class multiset_impl
886
886
  (const KeyType& lower_key, const KeyType& upper_key, KeyTypeKeyCompare comp, bool left_closed, bool right_closed) const;
887
887
 
888
888
  //! @copydoc ::boost::intrusive::rbtree::s_iterator_to(reference)
889
- static iterator s_iterator_to(reference value);
889
+ static iterator s_iterator_to(reference value) BOOST_NOEXCEPT;
890
890
 
891
891
  //! @copydoc ::boost::intrusive::rbtree::s_iterator_to(const_reference)
892
- static const_iterator s_iterator_to(const_reference value);
892
+ static const_iterator s_iterator_to(const_reference value) BOOST_NOEXCEPT;
893
893
 
894
894
  //! @copydoc ::boost::intrusive::rbtree::iterator_to(reference)
895
- iterator iterator_to(reference value);
895
+ iterator iterator_to(reference value) BOOST_NOEXCEPT;
896
896
 
897
897
  //! @copydoc ::boost::intrusive::rbtree::iterator_to(const_reference)const
898
- const_iterator iterator_to(const_reference value) const;
898
+ const_iterator iterator_to(const_reference value) const BOOST_NOEXCEPT;
899
899
 
900
900
  //! @copydoc ::boost::intrusive::rbtree::init_node(reference)
901
- static void init_node(reference value);
901
+ static void init_node(reference value) BOOST_NOEXCEPT;
902
902
 
903
903
  //! @copydoc ::boost::intrusive::rbtree::unlink_leftmost_without_rebalance
904
- pointer unlink_leftmost_without_rebalance();
904
+ pointer unlink_leftmost_without_rebalance() BOOST_NOEXCEPT;
905
905
 
906
906
  //! @copydoc ::boost::intrusive::rbtree::replace_node
907
- void replace_node(iterator replace_this, reference with_this);
907
+ void replace_node(iterator replace_this, reference with_this) BOOST_NOEXCEPT;
908
908
 
909
909
  //! @copydoc ::boost::intrusive::rbtree::remove_node
910
- void remove_node(reference value);
910
+ void remove_node(reference value) BOOST_NOEXCEPT;
911
911
 
912
912
  //! @copydoc ::boost::intrusive::rbtree::merge_equal
913
913
  template<class ...Options2>
@@ -1050,16 +1050,16 @@ class multiset
1050
1050
  BOOST_INTRUSIVE_FORCEINLINE void clone_from(BOOST_RV_REF(multiset) src, Cloner cloner, Disposer disposer)
1051
1051
  { Base::clone_from(BOOST_MOVE_BASE(Base, src), cloner, disposer); }
1052
1052
 
1053
- BOOST_INTRUSIVE_FORCEINLINE static multiset &container_from_end_iterator(iterator end_iterator)
1053
+ BOOST_INTRUSIVE_FORCEINLINE static multiset &container_from_end_iterator(iterator end_iterator) BOOST_NOEXCEPT
1054
1054
  { return static_cast<multiset &>(Base::container_from_end_iterator(end_iterator)); }
1055
1055
 
1056
- BOOST_INTRUSIVE_FORCEINLINE static const multiset &container_from_end_iterator(const_iterator end_iterator)
1056
+ BOOST_INTRUSIVE_FORCEINLINE static const multiset &container_from_end_iterator(const_iterator end_iterator) BOOST_NOEXCEPT
1057
1057
  { return static_cast<const multiset &>(Base::container_from_end_iterator(end_iterator)); }
1058
1058
 
1059
- BOOST_INTRUSIVE_FORCEINLINE static multiset &container_from_iterator(iterator it)
1059
+ BOOST_INTRUSIVE_FORCEINLINE static multiset &container_from_iterator(iterator it) BOOST_NOEXCEPT
1060
1060
  { return static_cast<multiset &>(Base::container_from_iterator(it)); }
1061
1061
 
1062
- BOOST_INTRUSIVE_FORCEINLINE static const multiset &container_from_iterator(const_iterator it)
1062
+ BOOST_INTRUSIVE_FORCEINLINE static const multiset &container_from_iterator(const_iterator it) BOOST_NOEXCEPT
1063
1063
  { return static_cast<const multiset &>(Base::container_from_iterator(it)); }
1064
1064
  };
1065
1065