passenger 6.0.11 → 6.0.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +24 -1
- data/CONTRIBUTORS +3 -0
- data/src/agent/Core/Config.h +1 -1
- data/src/agent/Core/Controller/CheckoutSession.cpp +24 -13
- data/src/agent/Core/Controller/Config.h +1 -1
- data/src/agent/Core/Controller/InternalUtils.cpp +32 -6
- data/src/agent/Core/Controller.h +4 -1
- data/src/agent/Watchdog/Config.h +1 -1
- data/src/cxx_supportlib/Constants.h +1 -1
- data/src/cxx_supportlib/IOTools/IOUtils.cpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/align/aligned_alloc.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc_posix.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/is_alignment.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +53 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +179 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +57 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/associator.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +789 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +723 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +191 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_signal.hpp +361 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_state.hpp +237 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_type.hpp +176 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +30 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_cancellation_state.hpp +165 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +209 -76
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +149 -60
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +14 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +14 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +21 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +30 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +14 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +19 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +15 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +93 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +77 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/recycling_allocator.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +14 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +90 -24
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +30 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +5 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_execute.hpp +10 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/connect.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/execute.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/schedule.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_done.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_error.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_value.hpp +13 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/start.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/submit.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/append.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_tuple.hpp +133 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/awaitable_operators.hpp +538 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/cancellation_condition.hpp +157 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro.hpp +1057 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/deferred.hpp +607 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/completion_handler_erasure.hpp +160 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_promise_allocator.hpp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_traits.hpp +185 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/partial_promise.hpp +181 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/append.hpp +219 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +14 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_tuple.hpp +248 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/deferred.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +434 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/prepend.hpp +219 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +100 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +217 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/prepend.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/promise.hpp +608 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +284 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +344 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +23 -54
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +23 -54
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +66 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/compose.hpp +55 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +68 -80
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/defer.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/dispatch.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/post.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +98 -113
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +71 -82
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +210 -266
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +248 -30
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +11 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +15 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +71 -87
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +46 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +2 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +23 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +132 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +14 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +36 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +14 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +73 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +235 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_awaitable.hpp +7 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_ref.hpp +14 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +17 -13
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_ref.hpp +14 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx03.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx11.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx14.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx17.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx20.hpp +56 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/common_edg.hpp +31 -11
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/cxx_composite.hpp +20 -4
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/select_platform_config.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +81 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/bsd.hpp +5 -8
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/wasm.hpp +17 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +46 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/std_fwd.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/polymorphic_allocator.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +45 -38
- data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/ignore_unused.hpp +32 -2
- data/src/cxx_supportlib/vendor-modified/boost/core/uncaught_exceptions.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/date_time/compiler_config.hpp +0 -24
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_parsers.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/any_hook.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +83 -83
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +43 -43
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +31 -31
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +85 -85
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +68 -68
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +72 -62
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +19 -20
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +19 -19
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/derivation_value_traits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/common_slist_algorithms.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/config_begin.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/generic_hook.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_combine.hpp +2 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/math.hpp +2 -50
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_cloner_disposer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +71 -70
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +15 -14
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +84 -82
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list_hook.hpp +10 -10
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/member_value_traits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/parent_from_member.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_plus_bits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +43 -43
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +26 -26
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +85 -85
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set_hook.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +93 -93
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +51 -51
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +24 -24
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +104 -104
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist_hook.hpp +8 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +91 -91
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +46 -46
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +31 -31
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +51 -51
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +97 -97
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/trivial_value_traits.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +63 -63
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +15 -15
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/config_begin.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_traits.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/nsec_clock.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/operators.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/concepts.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/unicode_iterator.hpp +112 -31
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_parser.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/mem_block_cache.hpp +4 -8
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/unicode_iterator.hpp +0 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/w32_regex_traits.hpp +6 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +22 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +59 -1
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +9 -11
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category.hpp +27 -21
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category_impl.hpp +34 -3
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.hpp +378 -36
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_condition.hpp +97 -21
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/interop_category.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/snprintf.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/{to_std_category.hpp → std_category.hpp} +5 -55
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_impl.hpp +2 -12
- data/src/cxx_supportlib/vendor-modified/boost/system/error_code.hpp +0 -33
- data/src/cxx_supportlib/vendor-modified/boost/utility/detail/result_of_variadic.hpp +190 -0
- data/src/cxx_supportlib/vendor-modified/boost/utility/result_of.hpp +20 -9
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_view.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
- data/src/nginx_module/ConfigGeneral/AutoGeneratedDefinitions.c +8 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c +6 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c +12 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedCreateFunction.c +5 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedHeaderSerialization.c +21 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c +13 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedMergeFunction.c +3 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedStruct.h +4 -0
- data/src/ruby_supportlib/phusion_passenger/admin_tools/instance_registry.rb +3 -2
- data/src/ruby_supportlib/phusion_passenger/loader_shared_helpers.rb +8 -1
- data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +6 -0
- data/src/ruby_supportlib/phusion_passenger/packaging.rb +1 -0
- data/src/ruby_supportlib/phusion_passenger/platform_info/openssl.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/platform_info/operating_system.rb +8 -0
- data/src/ruby_supportlib/phusion_passenger/request_handler.rb +4 -1
- data/src/ruby_supportlib/phusion_passenger.rb +1 -1
- metadata +39 -4
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/is_generic_value.hpp +0 -125
@@ -167,21 +167,21 @@ class avltree_algorithms
|
|
167
167
|
#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
168
168
|
|
169
169
|
//! @copydoc ::boost::intrusive::bstree_algorithms::get_header(const const_node_ptr&)
|
170
|
-
static node_ptr get_header(const const_node_ptr & n);
|
170
|
+
static node_ptr get_header(const const_node_ptr & n) BOOST_NOEXCEPT;
|
171
171
|
|
172
172
|
//! @copydoc ::boost::intrusive::bstree_algorithms::begin_node
|
173
|
-
static node_ptr begin_node(const const_node_ptr & header);
|
173
|
+
static node_ptr begin_node(const const_node_ptr & header) BOOST_NOEXCEPT;
|
174
174
|
|
175
175
|
//! @copydoc ::boost::intrusive::bstree_algorithms::end_node
|
176
|
-
static node_ptr end_node(const const_node_ptr & header);
|
176
|
+
static node_ptr end_node(const const_node_ptr & header) BOOST_NOEXCEPT;
|
177
177
|
|
178
178
|
//! @copydoc ::boost::intrusive::bstree_algorithms::swap_tree
|
179
|
-
static void swap_tree(node_ptr header1, node_ptr header2);
|
179
|
+
static void swap_tree(node_ptr header1, node_ptr header2) BOOST_NOEXCEPT;
|
180
180
|
|
181
181
|
#endif //#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
182
182
|
|
183
183
|
//! @copydoc ::boost::intrusive::bstree_algorithms::swap_nodes(node_ptr,node_ptr)
|
184
|
-
static void swap_nodes(node_ptr node1, node_ptr node2)
|
184
|
+
static void swap_nodes(node_ptr node1, node_ptr node2) BOOST_NOEXCEPT
|
185
185
|
{
|
186
186
|
if(node1 == node2)
|
187
187
|
return;
|
@@ -191,7 +191,7 @@ class avltree_algorithms
|
|
191
191
|
}
|
192
192
|
|
193
193
|
//! @copydoc ::boost::intrusive::bstree_algorithms::swap_nodes(node_ptr,node_ptr,node_ptr,node_ptr)
|
194
|
-
static void swap_nodes(node_ptr node1, node_ptr header1, node_ptr node2, node_ptr header2)
|
194
|
+
static void swap_nodes(node_ptr node1, node_ptr header1, node_ptr node2, node_ptr header2) BOOST_NOEXCEPT
|
195
195
|
{
|
196
196
|
if(node1 == node2) return;
|
197
197
|
|
@@ -203,7 +203,7 @@ class avltree_algorithms
|
|
203
203
|
}
|
204
204
|
|
205
205
|
//! @copydoc ::boost::intrusive::bstree_algorithms::replace_node(node_ptr,node_ptr)
|
206
|
-
static void replace_node(node_ptr node_to_be_replaced, node_ptr new_node)
|
206
|
+
static void replace_node(node_ptr node_to_be_replaced, node_ptr new_node) BOOST_NOEXCEPT
|
207
207
|
{
|
208
208
|
if(node_to_be_replaced == new_node)
|
209
209
|
return;
|
@@ -211,14 +211,14 @@ class avltree_algorithms
|
|
211
211
|
}
|
212
212
|
|
213
213
|
//! @copydoc ::boost::intrusive::bstree_algorithms::replace_node(node_ptr,node_ptr,node_ptr)
|
214
|
-
static void replace_node(node_ptr node_to_be_replaced, node_ptr header, node_ptr new_node)
|
214
|
+
static void replace_node(node_ptr node_to_be_replaced, node_ptr header, node_ptr new_node) BOOST_NOEXCEPT
|
215
215
|
{
|
216
216
|
bstree_algo::replace_node(node_to_be_replaced, header, new_node);
|
217
217
|
NodeTraits::set_balance(new_node, NodeTraits::get_balance(node_to_be_replaced));
|
218
218
|
}
|
219
219
|
|
220
220
|
//! @copydoc ::boost::intrusive::bstree_algorithms::unlink(node_ptr)
|
221
|
-
static void unlink(node_ptr node)
|
221
|
+
static void unlink(node_ptr node) BOOST_NOEXCEPT
|
222
222
|
{
|
223
223
|
node_ptr x = NodeTraits::get_parent(node);
|
224
224
|
if(x){
|
@@ -230,22 +230,22 @@ class avltree_algorithms
|
|
230
230
|
|
231
231
|
#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
232
232
|
//! @copydoc ::boost::intrusive::bstree_algorithms::unlink_leftmost_without_rebalance
|
233
|
-
static node_ptr unlink_leftmost_without_rebalance(const node_ptr & header);
|
233
|
+
static node_ptr unlink_leftmost_without_rebalance(const node_ptr & header) BOOST_NOEXCEPT;
|
234
234
|
|
235
235
|
//! @copydoc ::boost::intrusive::bstree_algorithms::unique(const const_node_ptr&)
|
236
|
-
static bool unique(const const_node_ptr & node);
|
236
|
+
static bool unique(const const_node_ptr & node) BOOST_NOEXCEPT;
|
237
237
|
|
238
238
|
//! @copydoc ::boost::intrusive::bstree_algorithms::size(const const_node_ptr&)
|
239
|
-
static std::size_t size(const const_node_ptr & header);
|
239
|
+
static std::size_t size(const const_node_ptr & header) BOOST_NOEXCEPT;
|
240
240
|
|
241
241
|
//! @copydoc ::boost::intrusive::bstree_algorithms::next_node(const node_ptr&)
|
242
|
-
static node_ptr next_node(const node_ptr & node);
|
242
|
+
static node_ptr next_node(const node_ptr & node) BOOST_NOEXCEPT;
|
243
243
|
|
244
244
|
//! @copydoc ::boost::intrusive::bstree_algorithms::prev_node(const node_ptr&)
|
245
|
-
static node_ptr prev_node(const node_ptr & node);
|
245
|
+
static node_ptr prev_node(const node_ptr & node) BOOST_NOEXCEPT;
|
246
246
|
|
247
247
|
//! @copydoc ::boost::intrusive::bstree_algorithms::init(node_ptr)
|
248
|
-
static void init(const node_ptr & node);
|
248
|
+
static void init(const node_ptr & node) BOOST_NOEXCEPT;
|
249
249
|
#endif //#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
250
250
|
|
251
251
|
//! <b>Requires</b>: node must not be part of any tree.
|
@@ -258,14 +258,14 @@ class avltree_algorithms
|
|
258
258
|
//! <b>Throws</b>: Nothing.
|
259
259
|
//!
|
260
260
|
//! <b>Nodes</b>: If node is inserted in a tree, this function corrupts the tree.
|
261
|
-
static void init_header(node_ptr header)
|
261
|
+
static void init_header(node_ptr header) BOOST_NOEXCEPT
|
262
262
|
{
|
263
263
|
bstree_algo::init_header(header);
|
264
264
|
NodeTraits::set_balance(header, NodeTraits::zero());
|
265
265
|
}
|
266
266
|
|
267
267
|
//! @copydoc ::boost::intrusive::bstree_algorithms::erase(node_ptr,node_ptr)
|
268
|
-
static node_ptr erase(node_ptr header, node_ptr z)
|
268
|
+
static node_ptr erase(node_ptr header, node_ptr z) BOOST_NOEXCEPT
|
269
269
|
{
|
270
270
|
typename bstree_algo::data_for_rebalance info;
|
271
271
|
bstree_algo::erase(header, z, info);
|
@@ -310,7 +310,7 @@ class avltree_algorithms
|
|
310
310
|
#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
311
311
|
//! @copydoc ::boost::intrusive::bstree_algorithms::clear_and_dispose(const node_ptr&,Disposer)
|
312
312
|
template<class Disposer>
|
313
|
-
static void clear_and_dispose(const node_ptr & header, Disposer disposer);
|
313
|
+
static void clear_and_dispose(const node_ptr & header, Disposer disposer) BOOST_NOEXCEPT;
|
314
314
|
|
315
315
|
//! @copydoc ::boost::intrusive::bstree_algorithms::lower_bound(const const_node_ptr&,const KeyType&,KeyNodePtrCompare)
|
316
316
|
template<class KeyType, class KeyNodePtrCompare>
|
@@ -376,7 +376,7 @@ class avltree_algorithms
|
|
376
376
|
|
377
377
|
//! @copydoc ::boost::intrusive::bstree_algorithms::insert_before(node_ptr,node_ptr,node_ptr)
|
378
378
|
static node_ptr insert_before
|
379
|
-
(node_ptr header, node_ptr pos, node_ptr new_node)
|
379
|
+
(node_ptr header, node_ptr pos, node_ptr new_node) BOOST_NOEXCEPT
|
380
380
|
{
|
381
381
|
bstree_algo::insert_before(header, pos, new_node);
|
382
382
|
rebalance_after_insertion(header, new_node);
|
@@ -384,14 +384,14 @@ class avltree_algorithms
|
|
384
384
|
}
|
385
385
|
|
386
386
|
//! @copydoc ::boost::intrusive::bstree_algorithms::push_back(node_ptr,node_ptr)
|
387
|
-
static void push_back(node_ptr header, node_ptr new_node)
|
387
|
+
static void push_back(node_ptr header, node_ptr new_node) BOOST_NOEXCEPT
|
388
388
|
{
|
389
389
|
bstree_algo::push_back(header, new_node);
|
390
390
|
rebalance_after_insertion(header, new_node);
|
391
391
|
}
|
392
392
|
|
393
393
|
//! @copydoc ::boost::intrusive::bstree_algorithms::push_front(node_ptr,node_ptr)
|
394
|
-
static void push_front(node_ptr header, node_ptr new_node)
|
394
|
+
static void push_front(node_ptr header, node_ptr new_node) BOOST_NOEXCEPT
|
395
395
|
{
|
396
396
|
bstree_algo::push_front(header, new_node);
|
397
397
|
rebalance_after_insertion(header, new_node);
|
@@ -413,14 +413,14 @@ class avltree_algorithms
|
|
413
413
|
|
414
414
|
//! @copydoc ::boost::intrusive::bstree_algorithms::insert_unique_commit(node_ptr,node_ptr,const insert_commit_data &)
|
415
415
|
static void insert_unique_commit
|
416
|
-
(node_ptr header, node_ptr new_value, const insert_commit_data &commit_data)
|
416
|
+
(node_ptr header, node_ptr new_value, const insert_commit_data &commit_data) BOOST_NOEXCEPT
|
417
417
|
{
|
418
418
|
bstree_algo::insert_unique_commit(header, new_value, commit_data);
|
419
419
|
rebalance_after_insertion(header, new_value);
|
420
420
|
}
|
421
421
|
|
422
422
|
//! @copydoc ::boost::intrusive::bstree_algorithms::is_header
|
423
|
-
static bool is_header(const const_node_ptr & p)
|
423
|
+
static bool is_header(const const_node_ptr & p) BOOST_NOEXCEPT
|
424
424
|
{ return NodeTraits::get_balance(p) == NodeTraits::zero() && bstree_algo::is_header(p); }
|
425
425
|
|
426
426
|
|
@@ -483,7 +483,7 @@ class avltree_algorithms
|
|
483
483
|
}
|
484
484
|
|
485
485
|
static void rebalance_after_erasure
|
486
|
-
( node_ptr header, node_ptr z, const typename bstree_algo::data_for_rebalance &info)
|
486
|
+
( node_ptr header, node_ptr z, const typename bstree_algo::data_for_rebalance &info) BOOST_NOEXCEPT
|
487
487
|
{
|
488
488
|
if(info.y != z){
|
489
489
|
NodeTraits::set_balance(info.y, NodeTraits::get_balance(z));
|
@@ -492,7 +492,7 @@ class avltree_algorithms
|
|
492
492
|
rebalance_after_erasure_restore_invariants(header, info.x, info.x_parent);
|
493
493
|
}
|
494
494
|
|
495
|
-
static void rebalance_after_erasure_restore_invariants(node_ptr header, node_ptr x, node_ptr x_parent)
|
495
|
+
static void rebalance_after_erasure_restore_invariants(node_ptr header, node_ptr x, node_ptr x_parent) BOOST_NOEXCEPT
|
496
496
|
{
|
497
497
|
for ( node_ptr root = NodeTraits::get_parent(header)
|
498
498
|
; x != root
|
@@ -560,7 +560,7 @@ class avltree_algorithms
|
|
560
560
|
}
|
561
561
|
}
|
562
562
|
|
563
|
-
static void rebalance_after_insertion(node_ptr header, node_ptr x)
|
563
|
+
static void rebalance_after_insertion(node_ptr header, node_ptr x) BOOST_NOEXCEPT
|
564
564
|
{
|
565
565
|
NodeTraits::set_balance(x, NodeTraits::zero());
|
566
566
|
// Rebalance.
|
@@ -605,7 +605,7 @@ class avltree_algorithms
|
|
605
605
|
}
|
606
606
|
}
|
607
607
|
|
608
|
-
static void left_right_balancing(node_ptr a, node_ptr b, node_ptr c)
|
608
|
+
static void left_right_balancing(node_ptr a, node_ptr b, node_ptr c) BOOST_NOEXCEPT
|
609
609
|
{
|
610
610
|
// balancing...
|
611
611
|
const balance c_balance = NodeTraits::get_balance(c);
|
@@ -630,7 +630,7 @@ class avltree_algorithms
|
|
630
630
|
}
|
631
631
|
}
|
632
632
|
|
633
|
-
static node_ptr avl_rotate_left_right(const node_ptr a, const node_ptr a_oldleft, node_ptr hdr)
|
633
|
+
static node_ptr avl_rotate_left_right(const node_ptr a, const node_ptr a_oldleft, node_ptr hdr) BOOST_NOEXCEPT
|
634
634
|
{ // [note: 'a_oldleft' is 'b']
|
635
635
|
// | | //
|
636
636
|
// a(-2) c //
|
@@ -650,7 +650,7 @@ class avltree_algorithms
|
|
650
650
|
return c;
|
651
651
|
}
|
652
652
|
|
653
|
-
static node_ptr avl_rotate_right_left(const node_ptr a, const node_ptr a_oldright, node_ptr hdr)
|
653
|
+
static node_ptr avl_rotate_right_left(const node_ptr a, const node_ptr a_oldright, node_ptr hdr) BOOST_NOEXCEPT
|
654
654
|
{ // [note: 'a_oldright' is 'b']
|
655
655
|
// | | //
|
656
656
|
// a(pos) c //
|
@@ -670,7 +670,7 @@ class avltree_algorithms
|
|
670
670
|
return c;
|
671
671
|
}
|
672
672
|
|
673
|
-
static void avl_rotate_left(node_ptr x, node_ptr x_oldright, node_ptr hdr)
|
673
|
+
static void avl_rotate_left(node_ptr x, node_ptr x_oldright, node_ptr hdr) BOOST_NOEXCEPT
|
674
674
|
{
|
675
675
|
bstree_algo::rotate_left(x, x_oldright, NodeTraits::get_parent(x), hdr);
|
676
676
|
|
@@ -685,7 +685,7 @@ class avltree_algorithms
|
|
685
685
|
}
|
686
686
|
}
|
687
687
|
|
688
|
-
static void avl_rotate_right(node_ptr x, node_ptr x_oldleft, node_ptr hdr)
|
688
|
+
static void avl_rotate_right(node_ptr x, node_ptr x_oldleft, node_ptr hdr) BOOST_NOEXCEPT
|
689
689
|
{
|
690
690
|
bstree_algo::rotate_right(x, x_oldleft, NodeTraits::get_parent(x), hdr);
|
691
691
|
|
@@ -117,61 +117,61 @@ class bs_set_impl
|
|
117
117
|
~bs_set_impl();
|
118
118
|
|
119
119
|
//! @copydoc ::boost::intrusive::bstree::begin()
|
120
|
-
iterator begin();
|
120
|
+
iterator begin() BOOST_NOEXCEPT;
|
121
121
|
|
122
122
|
//! @copydoc ::boost::intrusive::bstree::begin()const
|
123
|
-
const_iterator begin() const;
|
123
|
+
const_iterator begin() const BOOST_NOEXCEPT;
|
124
124
|
|
125
125
|
//! @copydoc ::boost::intrusive::bstree::cbegin()const
|
126
|
-
const_iterator cbegin() const;
|
126
|
+
const_iterator cbegin() const BOOST_NOEXCEPT;
|
127
127
|
|
128
128
|
//! @copydoc ::boost::intrusive::bstree::end()
|
129
|
-
iterator end();
|
129
|
+
iterator end() BOOST_NOEXCEPT;
|
130
130
|
|
131
131
|
//! @copydoc ::boost::intrusive::bstree::end()const
|
132
|
-
const_iterator end() const;
|
132
|
+
const_iterator end() const BOOST_NOEXCEPT;
|
133
133
|
|
134
134
|
//! @copydoc ::boost::intrusive::bstree::cend()const
|
135
|
-
const_iterator cend() const;
|
135
|
+
const_iterator cend() const BOOST_NOEXCEPT;
|
136
136
|
|
137
137
|
//! @copydoc ::boost::intrusive::bstree::rbegin()
|
138
|
-
reverse_iterator rbegin();
|
138
|
+
reverse_iterator rbegin() BOOST_NOEXCEPT;
|
139
139
|
|
140
140
|
//! @copydoc ::boost::intrusive::bstree::rbegin()const
|
141
|
-
const_reverse_iterator rbegin() const;
|
141
|
+
const_reverse_iterator rbegin() const BOOST_NOEXCEPT;
|
142
142
|
|
143
143
|
//! @copydoc ::boost::intrusive::bstree::crbegin()const
|
144
|
-
const_reverse_iterator crbegin() const;
|
144
|
+
const_reverse_iterator crbegin() const BOOST_NOEXCEPT;
|
145
145
|
|
146
146
|
//! @copydoc ::boost::intrusive::bstree::rend()
|
147
|
-
reverse_iterator rend();
|
147
|
+
reverse_iterator rend() BOOST_NOEXCEPT;
|
148
148
|
|
149
149
|
//! @copydoc ::boost::intrusive::bstree::rend()const
|
150
|
-
const_reverse_iterator rend() const;
|
150
|
+
const_reverse_iterator rend() const BOOST_NOEXCEPT;
|
151
151
|
|
152
152
|
//! @copydoc ::boost::intrusive::bstree::crend()const
|
153
|
-
const_reverse_iterator crend() const;
|
153
|
+
const_reverse_iterator crend() const BOOST_NOEXCEPT;
|
154
154
|
|
155
155
|
//! @copydoc ::boost::intrusive::bstree::root()
|
156
|
-
iterator root();
|
156
|
+
iterator root() BOOST_NOEXCEPT;
|
157
157
|
|
158
158
|
//! @copydoc ::boost::intrusive::bstree::root()const
|
159
|
-
const_iterator root() const;
|
159
|
+
const_iterator root() const BOOST_NOEXCEPT;
|
160
160
|
|
161
161
|
//! @copydoc ::boost::intrusive::bstree::croot()const
|
162
|
-
const_iterator croot() const;
|
162
|
+
const_iterator croot() const BOOST_NOEXCEPT;
|
163
163
|
|
164
164
|
//! @copydoc ::boost::intrusive::bstree::container_from_end_iterator(iterator)
|
165
|
-
static bs_set_impl &container_from_end_iterator(iterator end_iterator);
|
165
|
+
static bs_set_impl &container_from_end_iterator(iterator end_iterator) BOOST_NOEXCEPT;
|
166
166
|
|
167
167
|
//! @copydoc ::boost::intrusive::bstree::container_from_end_iterator(const_iterator)
|
168
|
-
static const bs_set_impl &container_from_end_iterator(const_iterator end_iterator);
|
168
|
+
static const bs_set_impl &container_from_end_iterator(const_iterator end_iterator) BOOST_NOEXCEPT;
|
169
169
|
|
170
170
|
//! @copydoc ::boost::intrusive::bstree::container_from_iterator(iterator)
|
171
|
-
static bs_set_impl &container_from_iterator(iterator it);
|
171
|
+
static bs_set_impl &container_from_iterator(iterator it) BOOST_NOEXCEPT;
|
172
172
|
|
173
173
|
//! @copydoc ::boost::intrusive::bstree::container_from_iterator(const_iterator)
|
174
|
-
static const bs_set_impl &container_from_iterator(const_iterator it);
|
174
|
+
static const bs_set_impl &container_from_iterator(const_iterator it) BOOST_NOEXCEPT;
|
175
175
|
|
176
176
|
//! @copydoc ::boost::intrusive::bstree::key_comp()const
|
177
177
|
key_compare key_comp() const;
|
@@ -180,10 +180,10 @@ class bs_set_impl
|
|
180
180
|
value_compare value_comp() const;
|
181
181
|
|
182
182
|
//! @copydoc ::boost::intrusive::bstree::empty()const
|
183
|
-
bool empty() const;
|
183
|
+
bool empty() const BOOST_NOEXCEPT;
|
184
184
|
|
185
185
|
//! @copydoc ::boost::intrusive::bstree::size()const
|
186
|
-
size_type size() const;
|
186
|
+
size_type size() const BOOST_NOEXCEPT;
|
187
187
|
|
188
188
|
//! @copydoc ::boost::intrusive::bstree::swap
|
189
189
|
void swap(bs_set_impl& other);
|
@@ -241,24 +241,24 @@ class bs_set_impl
|
|
241
241
|
{ tree_type::insert_unique(b, e); }
|
242
242
|
|
243
243
|
//! @copydoc ::boost::intrusive::bstree::insert_unique_commit
|
244
|
-
iterator insert_commit(reference value, const insert_commit_data &commit_data)
|
244
|
+
iterator insert_commit(reference value, const insert_commit_data &commit_data) BOOST_NOEXCEPT
|
245
245
|
{ return tree_type::insert_unique_commit(value, commit_data); }
|
246
246
|
|
247
247
|
#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
248
248
|
//! @copydoc ::boost::intrusive::bstree::insert_before
|
249
|
-
iterator insert_before(const_iterator pos, reference value);
|
249
|
+
iterator insert_before(const_iterator pos, reference value) BOOST_NOEXCEPT;
|
250
250
|
|
251
251
|
//! @copydoc ::boost::intrusive::bstree::push_back
|
252
|
-
void push_back(reference value);
|
252
|
+
void push_back(reference value) BOOST_NOEXCEPT;
|
253
253
|
|
254
254
|
//! @copydoc ::boost::intrusive::bstree::push_front
|
255
|
-
void push_front(reference value);
|
255
|
+
void push_front(reference value) BOOST_NOEXCEPT;
|
256
256
|
|
257
257
|
//! @copydoc ::boost::intrusive::bstree::erase(const_iterator)
|
258
|
-
iterator erase(const_iterator i);
|
258
|
+
iterator erase(const_iterator i) BOOST_NOEXCEPT;
|
259
259
|
|
260
260
|
//! @copydoc ::boost::intrusive::bstree::erase(const_iterator,const_iterator)
|
261
|
-
iterator erase(const_iterator b, const_iterator e);
|
261
|
+
iterator erase(const_iterator b, const_iterator e) BOOST_NOEXCEPT;
|
262
262
|
|
263
263
|
//! @copydoc ::boost::intrusive::bstree::erase(const key_type &)
|
264
264
|
size_type erase(const key_type &key);
|
@@ -269,11 +269,11 @@ class bs_set_impl
|
|
269
269
|
|
270
270
|
//! @copydoc ::boost::intrusive::bstree::erase_and_dispose(const_iterator,Disposer)
|
271
271
|
template<class Disposer>
|
272
|
-
iterator erase_and_dispose(const_iterator i, Disposer disposer);
|
272
|
+
iterator erase_and_dispose(const_iterator i, Disposer disposer) BOOST_NOEXCEPT;
|
273
273
|
|
274
274
|
//! @copydoc ::boost::intrusive::bstree::erase_and_dispose(const_iterator,const_iterator,Disposer)
|
275
275
|
template<class Disposer>
|
276
|
-
iterator erase_and_dispose(const_iterator b, const_iterator e, Disposer disposer);
|
276
|
+
iterator erase_and_dispose(const_iterator b, const_iterator e, Disposer disposer) BOOST_NOEXCEPT;
|
277
277
|
|
278
278
|
//! @copydoc ::boost::intrusive::bstree::erase_and_dispose(const key_type &, Disposer)
|
279
279
|
template<class Disposer>
|
@@ -284,11 +284,11 @@ class bs_set_impl
|
|
284
284
|
size_type erase_and_dispose(const KeyType& key, KeyTypeKeyCompare comp, Disposer disposer);
|
285
285
|
|
286
286
|
//! @copydoc ::boost::intrusive::bstree::clear
|
287
|
-
void clear();
|
287
|
+
void clear() BOOST_NOEXCEPT;
|
288
288
|
|
289
289
|
//! @copydoc ::boost::intrusive::bstree::clear_and_dispose
|
290
290
|
template<class Disposer>
|
291
|
-
void clear_and_dispose(Disposer disposer);
|
291
|
+
void clear_and_dispose(Disposer disposer) BOOST_NOEXCEPT;
|
292
292
|
|
293
293
|
#endif // #ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
294
294
|
|
@@ -388,28 +388,28 @@ class bs_set_impl
|
|
388
388
|
(const KeyType& lower_key, const KeyType& upper_key, KeyTypeKeyCompare comp, bool left_closed, bool right_closed) const;
|
389
389
|
|
390
390
|
//! @copydoc ::boost::intrusive::bstree::s_iterator_to(reference)
|
391
|
-
static iterator s_iterator_to(reference value);
|
391
|
+
static iterator s_iterator_to(reference value) BOOST_NOEXCEPT;
|
392
392
|
|
393
393
|
//! @copydoc ::boost::intrusive::bstree::s_iterator_to(const_reference)
|
394
|
-
static const_iterator s_iterator_to(const_reference value);
|
394
|
+
static const_iterator s_iterator_to(const_reference value) BOOST_NOEXCEPT;
|
395
395
|
|
396
396
|
//! @copydoc ::boost::intrusive::bstree::iterator_to(reference)
|
397
|
-
iterator iterator_to(reference value);
|
397
|
+
iterator iterator_to(reference value) BOOST_NOEXCEPT;
|
398
398
|
|
399
399
|
//! @copydoc ::boost::intrusive::bstree::iterator_to(const_reference)const
|
400
|
-
const_iterator iterator_to(const_reference value) const;
|
400
|
+
const_iterator iterator_to(const_reference value) const BOOST_NOEXCEPT;
|
401
401
|
|
402
402
|
//! @copydoc ::boost::intrusive::bstree::init_node(reference)
|
403
|
-
static void init_node(reference value);
|
403
|
+
static void init_node(reference value) BOOST_NOEXCEPT;
|
404
404
|
|
405
405
|
//! @copydoc ::boost::intrusive::bstree::unlink_leftmost_without_rebalance
|
406
|
-
pointer unlink_leftmost_without_rebalance();
|
406
|
+
pointer unlink_leftmost_without_rebalance() BOOST_NOEXCEPT;
|
407
407
|
|
408
408
|
//! @copydoc ::boost::intrusive::bstree::replace_node
|
409
|
-
void replace_node(iterator replace_this, reference with_this);
|
409
|
+
void replace_node(iterator replace_this, reference with_this) BOOST_NOEXCEPT;
|
410
410
|
|
411
411
|
//! @copydoc ::boost::intrusive::bstree::remove_node
|
412
|
-
void remove_node(reference value);
|
412
|
+
void remove_node(reference value) BOOST_NOEXCEPT;
|
413
413
|
|
414
414
|
//! @copydoc ::boost::intrusive::bstree::merge_unique
|
415
415
|
template<class ...Options2>
|
@@ -552,16 +552,16 @@ class bs_set
|
|
552
552
|
BOOST_INTRUSIVE_FORCEINLINE void clone_from(BOOST_RV_REF(bs_set) src, Cloner cloner, Disposer disposer)
|
553
553
|
{ Base::clone_from(BOOST_MOVE_BASE(Base, src), cloner, disposer); }
|
554
554
|
|
555
|
-
BOOST_INTRUSIVE_FORCEINLINE static bs_set &container_from_end_iterator(iterator end_iterator)
|
555
|
+
BOOST_INTRUSIVE_FORCEINLINE static bs_set &container_from_end_iterator(iterator end_iterator) BOOST_NOEXCEPT
|
556
556
|
{ return static_cast<bs_set &>(Base::container_from_end_iterator(end_iterator)); }
|
557
557
|
|
558
|
-
BOOST_INTRUSIVE_FORCEINLINE static const bs_set &container_from_end_iterator(const_iterator end_iterator)
|
558
|
+
BOOST_INTRUSIVE_FORCEINLINE static const bs_set &container_from_end_iterator(const_iterator end_iterator) BOOST_NOEXCEPT
|
559
559
|
{ return static_cast<const bs_set &>(Base::container_from_end_iterator(end_iterator)); }
|
560
560
|
|
561
|
-
BOOST_INTRUSIVE_FORCEINLINE static bs_set &container_from_iterator(iterator it)
|
561
|
+
BOOST_INTRUSIVE_FORCEINLINE static bs_set &container_from_iterator(iterator it) BOOST_NOEXCEPT
|
562
562
|
{ return static_cast<bs_set &>(Base::container_from_iterator(it)); }
|
563
563
|
|
564
|
-
BOOST_INTRUSIVE_FORCEINLINE static const bs_set &container_from_iterator(const_iterator it)
|
564
|
+
BOOST_INTRUSIVE_FORCEINLINE static const bs_set &container_from_iterator(const_iterator it) BOOST_NOEXCEPT
|
565
565
|
{ return static_cast<const bs_set &>(Base::container_from_iterator(it)); }
|
566
566
|
};
|
567
567
|
|
@@ -653,61 +653,61 @@ class bs_multiset_impl
|
|
653
653
|
~bs_multiset_impl();
|
654
654
|
|
655
655
|
//! @copydoc ::boost::intrusive::bstree::begin()
|
656
|
-
iterator begin();
|
656
|
+
iterator begin() BOOST_NOEXCEPT;
|
657
657
|
|
658
658
|
//! @copydoc ::boost::intrusive::bstree::begin()const
|
659
|
-
const_iterator begin() const;
|
659
|
+
const_iterator begin() const BOOST_NOEXCEPT;
|
660
660
|
|
661
661
|
//! @copydoc ::boost::intrusive::bstree::cbegin()const
|
662
|
-
const_iterator cbegin() const;
|
662
|
+
const_iterator cbegin() const BOOST_NOEXCEPT;
|
663
663
|
|
664
664
|
//! @copydoc ::boost::intrusive::bstree::end()
|
665
|
-
iterator end();
|
665
|
+
iterator end() BOOST_NOEXCEPT;
|
666
666
|
|
667
667
|
//! @copydoc ::boost::intrusive::bstree::end()const
|
668
|
-
const_iterator end() const;
|
668
|
+
const_iterator end() const BOOST_NOEXCEPT;
|
669
669
|
|
670
670
|
//! @copydoc ::boost::intrusive::bstree::cend()const
|
671
|
-
const_iterator cend() const;
|
671
|
+
const_iterator cend() const BOOST_NOEXCEPT;
|
672
672
|
|
673
673
|
//! @copydoc ::boost::intrusive::bstree::rbegin()
|
674
|
-
reverse_iterator rbegin();
|
674
|
+
reverse_iterator rbegin() BOOST_NOEXCEPT;
|
675
675
|
|
676
676
|
//! @copydoc ::boost::intrusive::bstree::rbegin()const
|
677
|
-
const_reverse_iterator rbegin() const;
|
677
|
+
const_reverse_iterator rbegin() const BOOST_NOEXCEPT;
|
678
678
|
|
679
679
|
//! @copydoc ::boost::intrusive::bstree::crbegin()const
|
680
|
-
const_reverse_iterator crbegin() const;
|
680
|
+
const_reverse_iterator crbegin() const BOOST_NOEXCEPT;
|
681
681
|
|
682
682
|
//! @copydoc ::boost::intrusive::bstree::rend()
|
683
|
-
reverse_iterator rend();
|
683
|
+
reverse_iterator rend() BOOST_NOEXCEPT;
|
684
684
|
|
685
685
|
//! @copydoc ::boost::intrusive::bstree::rend()const
|
686
|
-
const_reverse_iterator rend() const;
|
686
|
+
const_reverse_iterator rend() const BOOST_NOEXCEPT;
|
687
687
|
|
688
688
|
//! @copydoc ::boost::intrusive::bstree::crend()const
|
689
|
-
const_reverse_iterator crend() const;
|
689
|
+
const_reverse_iterator crend() const BOOST_NOEXCEPT;
|
690
690
|
|
691
691
|
//! @copydoc ::boost::intrusive::bstree::root()
|
692
|
-
iterator root();
|
692
|
+
iterator root() BOOST_NOEXCEPT;
|
693
693
|
|
694
694
|
//! @copydoc ::boost::intrusive::bstree::root()const
|
695
|
-
const_iterator root() const;
|
695
|
+
const_iterator root() const BOOST_NOEXCEPT;
|
696
696
|
|
697
697
|
//! @copydoc ::boost::intrusive::bstree::croot()const
|
698
|
-
const_iterator croot() const;
|
698
|
+
const_iterator croot() const BOOST_NOEXCEPT;
|
699
699
|
|
700
700
|
//! @copydoc ::boost::intrusive::bstree::container_from_end_iterator(iterator)
|
701
|
-
static bs_multiset_impl &container_from_end_iterator(iterator end_iterator);
|
701
|
+
static bs_multiset_impl &container_from_end_iterator(iterator end_iterator) BOOST_NOEXCEPT;
|
702
702
|
|
703
703
|
//! @copydoc ::boost::intrusive::bstree::container_from_end_iterator(const_iterator)
|
704
|
-
static const bs_multiset_impl &container_from_end_iterator(const_iterator end_iterator);
|
704
|
+
static const bs_multiset_impl &container_from_end_iterator(const_iterator end_iterator) BOOST_NOEXCEPT;
|
705
705
|
|
706
706
|
//! @copydoc ::boost::intrusive::bstree::container_from_iterator(iterator)
|
707
|
-
static bs_multiset_impl &container_from_iterator(iterator it);
|
707
|
+
static bs_multiset_impl &container_from_iterator(iterator it) BOOST_NOEXCEPT;
|
708
708
|
|
709
709
|
//! @copydoc ::boost::intrusive::bstree::container_from_iterator(const_iterator)
|
710
|
-
static const bs_multiset_impl &container_from_iterator(const_iterator it);
|
710
|
+
static const bs_multiset_impl &container_from_iterator(const_iterator it) BOOST_NOEXCEPT;
|
711
711
|
|
712
712
|
//! @copydoc ::boost::intrusive::bstree::key_comp()const
|
713
713
|
key_compare key_comp() const;
|
@@ -716,10 +716,10 @@ class bs_multiset_impl
|
|
716
716
|
value_compare value_comp() const;
|
717
717
|
|
718
718
|
//! @copydoc ::boost::intrusive::bstree::empty()const
|
719
|
-
bool empty() const;
|
719
|
+
bool empty() const BOOST_NOEXCEPT;
|
720
720
|
|
721
721
|
//! @copydoc ::boost::intrusive::bstree::size()const
|
722
|
-
size_type size() const;
|
722
|
+
size_type size() const BOOST_NOEXCEPT;
|
723
723
|
|
724
724
|
//! @copydoc ::boost::intrusive::bstree::swap
|
725
725
|
void swap(bs_multiset_impl& other);
|
@@ -754,19 +754,19 @@ class bs_multiset_impl
|
|
754
754
|
|
755
755
|
#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
756
756
|
//! @copydoc ::boost::intrusive::bstree::insert_before
|
757
|
-
iterator insert_before(const_iterator pos, reference value);
|
757
|
+
iterator insert_before(const_iterator pos, reference value) BOOST_NOEXCEPT;
|
758
758
|
|
759
759
|
//! @copydoc ::boost::intrusive::bstree::push_back
|
760
|
-
void push_back(reference value);
|
760
|
+
void push_back(reference value) BOOST_NOEXCEPT;
|
761
761
|
|
762
762
|
//! @copydoc ::boost::intrusive::bstree::push_front
|
763
|
-
void push_front(reference value);
|
763
|
+
void push_front(reference value) BOOST_NOEXCEPT;
|
764
764
|
|
765
765
|
//! @copydoc ::boost::intrusive::bstree::erase(const_iterator)
|
766
|
-
iterator erase(const_iterator i);
|
766
|
+
iterator erase(const_iterator i) BOOST_NOEXCEPT;
|
767
767
|
|
768
768
|
//! @copydoc ::boost::intrusive::bstree::erase(const_iterator,const_iterator)
|
769
|
-
iterator erase(const_iterator b, const_iterator e);
|
769
|
+
iterator erase(const_iterator b, const_iterator e) BOOST_NOEXCEPT;
|
770
770
|
|
771
771
|
//! @copydoc ::boost::intrusive::bstree::erase(const key_type &)
|
772
772
|
size_type erase(const key_type &key);
|
@@ -777,11 +777,11 @@ class bs_multiset_impl
|
|
777
777
|
|
778
778
|
//! @copydoc ::boost::intrusive::bstree::erase_and_dispose(const_iterator,Disposer)
|
779
779
|
template<class Disposer>
|
780
|
-
iterator erase_and_dispose(const_iterator i, Disposer disposer);
|
780
|
+
iterator erase_and_dispose(const_iterator i, Disposer disposer) BOOST_NOEXCEPT;
|
781
781
|
|
782
782
|
//! @copydoc ::boost::intrusive::bstree::erase_and_dispose(const_iterator,const_iterator,Disposer)
|
783
783
|
template<class Disposer>
|
784
|
-
iterator erase_and_dispose(const_iterator b, const_iterator e, Disposer disposer);
|
784
|
+
iterator erase_and_dispose(const_iterator b, const_iterator e, Disposer disposer) BOOST_NOEXCEPT;
|
785
785
|
|
786
786
|
//! @copydoc ::boost::intrusive::bstree::erase_and_dispose(const key_type &, Disposer)
|
787
787
|
template<class Disposer>
|
@@ -792,11 +792,11 @@ class bs_multiset_impl
|
|
792
792
|
size_type erase_and_dispose(const KeyType& key, KeyTypeKeyCompare comp, Disposer disposer);
|
793
793
|
|
794
794
|
//! @copydoc ::boost::intrusive::bstree::clear
|
795
|
-
void clear();
|
795
|
+
void clear() BOOST_NOEXCEPT;
|
796
796
|
|
797
797
|
//! @copydoc ::boost::intrusive::bstree::clear_and_dispose
|
798
798
|
template<class Disposer>
|
799
|
-
void clear_and_dispose(Disposer disposer);
|
799
|
+
void clear_and_dispose(Disposer disposer) BOOST_NOEXCEPT;
|
800
800
|
|
801
801
|
//! @copydoc ::boost::intrusive::bstree::count(const key_type &)const
|
802
802
|
size_type count(const key_type &key) const;
|
@@ -882,28 +882,28 @@ class bs_multiset_impl
|
|
882
882
|
(const KeyType& lower_key, const KeyType& upper_key, KeyTypeKeyCompare comp, bool left_closed, bool right_closed) const;
|
883
883
|
|
884
884
|
//! @copydoc ::boost::intrusive::bstree::s_iterator_to(reference)
|
885
|
-
static iterator s_iterator_to(reference value);
|
885
|
+
static iterator s_iterator_to(reference value) BOOST_NOEXCEPT;
|
886
886
|
|
887
887
|
//! @copydoc ::boost::intrusive::bstree::s_iterator_to(const_reference)
|
888
|
-
static const_iterator s_iterator_to(const_reference value);
|
888
|
+
static const_iterator s_iterator_to(const_reference value) BOOST_NOEXCEPT;
|
889
889
|
|
890
890
|
//! @copydoc ::boost::intrusive::bstree::iterator_to(reference)
|
891
|
-
iterator iterator_to(reference value);
|
891
|
+
iterator iterator_to(reference value) BOOST_NOEXCEPT;
|
892
892
|
|
893
893
|
//! @copydoc ::boost::intrusive::bstree::iterator_to(const_reference)const
|
894
|
-
const_iterator iterator_to(const_reference value) const;
|
894
|
+
const_iterator iterator_to(const_reference value) const BOOST_NOEXCEPT;
|
895
895
|
|
896
896
|
//! @copydoc ::boost::intrusive::bstree::init_node(reference)
|
897
|
-
static void init_node(reference value);
|
897
|
+
static void init_node(reference value) BOOST_NOEXCEPT;
|
898
898
|
|
899
899
|
//! @copydoc ::boost::intrusive::bstree::unlink_leftmost_without_rebalance
|
900
|
-
pointer unlink_leftmost_without_rebalance();
|
900
|
+
pointer unlink_leftmost_without_rebalance() BOOST_NOEXCEPT;
|
901
901
|
|
902
902
|
//! @copydoc ::boost::intrusive::bstree::replace_node
|
903
|
-
void replace_node(iterator replace_this, reference with_this);
|
903
|
+
void replace_node(iterator replace_this, reference with_this) BOOST_NOEXCEPT;
|
904
904
|
|
905
905
|
//! @copydoc ::boost::intrusive::bstree::remove_node
|
906
|
-
void remove_node(reference value);
|
906
|
+
void remove_node(reference value) BOOST_NOEXCEPT;
|
907
907
|
|
908
908
|
//! @copydoc ::boost::intrusive::bstree::merge_equal
|
909
909
|
template<class ...Options2>
|
@@ -1046,16 +1046,16 @@ class bs_multiset
|
|
1046
1046
|
BOOST_INTRUSIVE_FORCEINLINE void clone_from(BOOST_RV_REF(bs_multiset) src, Cloner cloner, Disposer disposer)
|
1047
1047
|
{ Base::clone_from(BOOST_MOVE_BASE(Base, src), cloner, disposer); }
|
1048
1048
|
|
1049
|
-
BOOST_INTRUSIVE_FORCEINLINE static bs_multiset &container_from_end_iterator(iterator end_iterator)
|
1049
|
+
BOOST_INTRUSIVE_FORCEINLINE static bs_multiset &container_from_end_iterator(iterator end_iterator) BOOST_NOEXCEPT
|
1050
1050
|
{ return static_cast<bs_multiset &>(Base::container_from_end_iterator(end_iterator)); }
|
1051
1051
|
|
1052
|
-
BOOST_INTRUSIVE_FORCEINLINE static const bs_multiset &container_from_end_iterator(const_iterator end_iterator)
|
1052
|
+
BOOST_INTRUSIVE_FORCEINLINE static const bs_multiset &container_from_end_iterator(const_iterator end_iterator) BOOST_NOEXCEPT
|
1053
1053
|
{ return static_cast<const bs_multiset &>(Base::container_from_end_iterator(end_iterator)); }
|
1054
1054
|
|
1055
|
-
BOOST_INTRUSIVE_FORCEINLINE static bs_multiset &container_from_iterator(iterator it)
|
1055
|
+
BOOST_INTRUSIVE_FORCEINLINE static bs_multiset &container_from_iterator(iterator it) BOOST_NOEXCEPT
|
1056
1056
|
{ return static_cast<bs_multiset &>(Base::container_from_iterator(it)); }
|
1057
1057
|
|
1058
|
-
BOOST_INTRUSIVE_FORCEINLINE static const bs_multiset &container_from_iterator(const_iterator it)
|
1058
|
+
BOOST_INTRUSIVE_FORCEINLINE static const bs_multiset &container_from_iterator(const_iterator it) BOOST_NOEXCEPT
|
1059
1059
|
{ return static_cast<const bs_multiset &>(Base::container_from_iterator(it)); }
|
1060
1060
|
};
|
1061
1061
|
|