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
@@ -232,22 +232,22 @@ class treap_impl
|
|
232
232
|
~treap_impl();
|
233
233
|
|
234
234
|
//! @copydoc ::boost::intrusive::bstree::begin()
|
235
|
-
iterator begin();
|
235
|
+
iterator begin() BOOST_NOEXCEPT;
|
236
236
|
|
237
237
|
//! @copydoc ::boost::intrusive::bstree::begin()const
|
238
|
-
const_iterator begin() const;
|
238
|
+
const_iterator begin() const BOOST_NOEXCEPT;
|
239
239
|
|
240
240
|
//! @copydoc ::boost::intrusive::bstree::cbegin()const
|
241
|
-
const_iterator cbegin() const;
|
241
|
+
const_iterator cbegin() const BOOST_NOEXCEPT;
|
242
242
|
|
243
243
|
//! @copydoc ::boost::intrusive::bstree::end()
|
244
|
-
iterator end();
|
244
|
+
iterator end() BOOST_NOEXCEPT;
|
245
245
|
|
246
246
|
//! @copydoc ::boost::intrusive::bstree::end()const
|
247
|
-
const_iterator end() const;
|
247
|
+
const_iterator end() const BOOST_NOEXCEPT;
|
248
248
|
|
249
249
|
//! @copydoc ::boost::intrusive::bstree::cend()const
|
250
|
-
const_iterator cend() const;
|
250
|
+
const_iterator cend() const BOOST_NOEXCEPT;
|
251
251
|
#endif
|
252
252
|
|
253
253
|
//! <b>Effects</b>: Returns an iterator pointing to the highest priority object of the treap.
|
@@ -255,7 +255,7 @@ class treap_impl
|
|
255
255
|
//! <b>Complexity</b>: Constant.
|
256
256
|
//!
|
257
257
|
//! <b>Throws</b>: Nothing.
|
258
|
-
iterator top()
|
258
|
+
BOOST_INTRUSIVE_FORCEINLINE iterator top() BOOST_NOEXCEPT
|
259
259
|
{ return this->tree_type::root(); }
|
260
260
|
|
261
261
|
//! <b>Effects</b>: Returns a const_iterator pointing to the highest priority object of the treap..
|
@@ -263,7 +263,7 @@ class treap_impl
|
|
263
263
|
//! <b>Complexity</b>: Constant.
|
264
264
|
//!
|
265
265
|
//! <b>Throws</b>: Nothing.
|
266
|
-
const_iterator top() const
|
266
|
+
BOOST_INTRUSIVE_FORCEINLINE const_iterator top() const BOOST_NOEXCEPT
|
267
267
|
{ return this->ctop(); }
|
268
268
|
|
269
269
|
//! <b>Effects</b>: Returns a const_iterator pointing to the highest priority object of the treap..
|
@@ -271,36 +271,36 @@ class treap_impl
|
|
271
271
|
//! <b>Complexity</b>: Constant.
|
272
272
|
//!
|
273
273
|
//! <b>Throws</b>: Nothing.
|
274
|
-
const_iterator ctop() const
|
274
|
+
BOOST_INTRUSIVE_FORCEINLINE const_iterator ctop() const BOOST_NOEXCEPT
|
275
275
|
{ return this->tree_type::root(); }
|
276
276
|
|
277
277
|
#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
278
278
|
//! @copydoc ::boost::intrusive::bstree::rbegin()
|
279
|
-
reverse_iterator rbegin();
|
279
|
+
reverse_iterator rbegin() BOOST_NOEXCEPT;
|
280
280
|
|
281
281
|
//! @copydoc ::boost::intrusive::bstree::rbegin()const
|
282
|
-
const_reverse_iterator rbegin() const;
|
282
|
+
const_reverse_iterator rbegin() const BOOST_NOEXCEPT;
|
283
283
|
|
284
284
|
//! @copydoc ::boost::intrusive::bstree::crbegin()const
|
285
|
-
const_reverse_iterator crbegin() const;
|
285
|
+
const_reverse_iterator crbegin() const BOOST_NOEXCEPT;
|
286
286
|
|
287
287
|
//! @copydoc ::boost::intrusive::bstree::rend()
|
288
|
-
reverse_iterator rend();
|
288
|
+
reverse_iterator rend() BOOST_NOEXCEPT;
|
289
289
|
|
290
290
|
//! @copydoc ::boost::intrusive::bstree::rend()const
|
291
|
-
const_reverse_iterator rend() const;
|
291
|
+
const_reverse_iterator rend() const BOOST_NOEXCEPT;
|
292
292
|
|
293
293
|
//! @copydoc ::boost::intrusive::bstree::crend()const
|
294
|
-
const_reverse_iterator crend() const;
|
294
|
+
const_reverse_iterator crend() const BOOST_NOEXCEPT;
|
295
295
|
|
296
296
|
//! @copydoc ::boost::intrusive::bstree::root()
|
297
|
-
iterator root();
|
297
|
+
iterator root() BOOST_NOEXCEPT;
|
298
298
|
|
299
299
|
//! @copydoc ::boost::intrusive::bstree::root()const
|
300
|
-
const_iterator root() const;
|
300
|
+
const_iterator root() const BOOST_NOEXCEPT;
|
301
301
|
|
302
302
|
//! @copydoc ::boost::intrusive::bstree::croot()const
|
303
|
-
const_iterator croot() const;
|
303
|
+
const_iterator croot() const BOOST_NOEXCEPT;
|
304
304
|
|
305
305
|
#endif
|
306
306
|
|
@@ -310,7 +310,7 @@ class treap_impl
|
|
310
310
|
//! <b>Complexity</b>: Constant.
|
311
311
|
//!
|
312
312
|
//! <b>Throws</b>: Nothing.
|
313
|
-
reverse_iterator rtop()
|
313
|
+
BOOST_INTRUSIVE_FORCEINLINE reverse_iterator rtop() BOOST_NOEXCEPT
|
314
314
|
{ return reverse_iterator(this->top()); }
|
315
315
|
|
316
316
|
//! <b>Effects</b>: Returns a const_reverse_iterator pointing to the highest priority objec
|
@@ -319,7 +319,7 @@ class treap_impl
|
|
319
319
|
//! <b>Complexity</b>: Constant.
|
320
320
|
//!
|
321
321
|
//! <b>Throws</b>: Nothing.
|
322
|
-
const_reverse_iterator rtop() const
|
322
|
+
BOOST_INTRUSIVE_FORCEINLINE const_reverse_iterator rtop() const BOOST_NOEXCEPT
|
323
323
|
{ return const_reverse_iterator(this->top()); }
|
324
324
|
|
325
325
|
//! <b>Effects</b>: Returns a const_reverse_iterator pointing to the highest priority object
|
@@ -328,21 +328,21 @@ class treap_impl
|
|
328
328
|
//! <b>Complexity</b>: Constant.
|
329
329
|
//!
|
330
330
|
//! <b>Throws</b>: Nothing.
|
331
|
-
const_reverse_iterator crtop() const
|
331
|
+
BOOST_INTRUSIVE_FORCEINLINE const_reverse_iterator crtop() const BOOST_NOEXCEPT
|
332
332
|
{ return const_reverse_iterator(this->top()); }
|
333
333
|
|
334
334
|
#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
335
335
|
//! @copydoc ::boost::intrusive::bstree::container_from_end_iterator(iterator)
|
336
|
-
static treap_impl &container_from_end_iterator(iterator end_iterator);
|
336
|
+
static treap_impl &container_from_end_iterator(iterator end_iterator) BOOST_NOEXCEPT;
|
337
337
|
|
338
338
|
//! @copydoc ::boost::intrusive::bstree::container_from_end_iterator(const_iterator)
|
339
|
-
static const treap_impl &container_from_end_iterator(const_iterator end_iterator);
|
339
|
+
static const treap_impl &container_from_end_iterator(const_iterator end_iterator) BOOST_NOEXCEPT;
|
340
340
|
|
341
341
|
//! @copydoc ::boost::intrusive::bstree::container_from_iterator(iterator)
|
342
|
-
static treap_impl &container_from_iterator(iterator it);
|
342
|
+
static treap_impl &container_from_iterator(iterator it) BOOST_NOEXCEPT;
|
343
343
|
|
344
344
|
//! @copydoc ::boost::intrusive::bstree::container_from_iterator(const_iterator)
|
345
|
-
static const treap_impl &container_from_iterator(const_iterator it);
|
345
|
+
static const treap_impl &container_from_iterator(const_iterator it) BOOST_NOEXCEPT;
|
346
346
|
|
347
347
|
//! @copydoc ::boost::intrusive::bstree::key_comp()const
|
348
348
|
key_compare key_comp() const;
|
@@ -351,10 +351,10 @@ class treap_impl
|
|
351
351
|
value_compare value_comp() const;
|
352
352
|
|
353
353
|
//! @copydoc ::boost::intrusive::bstree::empty()const
|
354
|
-
bool empty() const;
|
354
|
+
bool empty() const BOOST_NOEXCEPT;
|
355
355
|
|
356
356
|
//! @copydoc ::boost::intrusive::bstree::size()const
|
357
|
-
size_type size() const;
|
357
|
+
size_type size() const BOOST_NOEXCEPT;
|
358
358
|
#endif //#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
359
359
|
|
360
360
|
//! <b>Effects</b>: Returns the priority_compare object used by the container.
|
@@ -755,7 +755,7 @@ class treap_impl
|
|
755
755
|
//! <b>Notes</b>: This function has only sense if a "insert_check" has been
|
756
756
|
//! previously executed to fill "commit_data". No value should be inserted or
|
757
757
|
//! erased between the "insert_check" and "insert_commit" calls.
|
758
|
-
iterator insert_unique_commit(reference value, const insert_commit_data &commit_data)
|
758
|
+
iterator insert_unique_commit(reference value, const insert_commit_data &commit_data) BOOST_NOEXCEPT
|
759
759
|
{
|
760
760
|
node_ptr to_insert(this->get_value_traits().to_node_ptr(value));
|
761
761
|
BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(!safemode_or_autounlink || node_algorithms::unique(to_insert));
|
@@ -778,7 +778,7 @@ class treap_impl
|
|
778
778
|
//! the successor of "value" container ordering invariant will be broken.
|
779
779
|
//! This is a low-level function to be used only for performance reasons
|
780
780
|
//! by advanced users.
|
781
|
-
iterator insert_before(const_iterator pos, reference value)
|
781
|
+
iterator insert_before(const_iterator pos, reference value) BOOST_NOEXCEPT
|
782
782
|
{
|
783
783
|
node_ptr to_insert(this->get_value_traits().to_node_ptr(value));
|
784
784
|
BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(!safemode_or_autounlink || node_algorithms::unique(to_insert));
|
@@ -808,7 +808,7 @@ class treap_impl
|
|
808
808
|
//! This function is slightly more efficient than using "insert_before".
|
809
809
|
//! This is a low-level function to be used only for performance reasons
|
810
810
|
//! by advanced users.
|
811
|
-
void push_back(reference value)
|
811
|
+
void push_back(reference value) BOOST_NOEXCEPT
|
812
812
|
{
|
813
813
|
node_ptr to_insert(this->get_value_traits().to_node_ptr(value));
|
814
814
|
BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(!safemode_or_autounlink || node_algorithms::unique(to_insert));
|
@@ -831,7 +831,7 @@ class treap_impl
|
|
831
831
|
//! This function is slightly more efficient than using "insert_before".
|
832
832
|
//! This is a low-level function to be used only for performance reasons
|
833
833
|
//! by advanced users.
|
834
|
-
void push_front(reference value)
|
834
|
+
void push_front(reference value) BOOST_NOEXCEPT
|
835
835
|
{
|
836
836
|
node_ptr to_insert(this->get_value_traits().to_node_ptr(value));
|
837
837
|
BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(!safemode_or_autounlink || node_algorithms::unique(to_insert));
|
@@ -848,7 +848,7 @@ class treap_impl
|
|
848
848
|
//!
|
849
849
|
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
850
850
|
//! to the erased elements. No destructors are called.
|
851
|
-
iterator erase(const_iterator i)
|
851
|
+
iterator erase(const_iterator i) BOOST_NOEXCEPT
|
852
852
|
{
|
853
853
|
const_iterator ret(i);
|
854
854
|
++ret;
|
@@ -857,7 +857,7 @@ class treap_impl
|
|
857
857
|
node_algorithms::erase
|
858
858
|
(this->tree_type::header_ptr(), to_erase, this->prio_node_prio_comp(this->priv_pcomp()));
|
859
859
|
this->tree_type::sz_traits().decrement();
|
860
|
-
|
860
|
+
BOOST_IF_CONSTEXPR(safemode_or_autounlink)
|
861
861
|
node_algorithms::init(to_erase);
|
862
862
|
return ret.unconst();
|
863
863
|
}
|
@@ -871,7 +871,7 @@ class treap_impl
|
|
871
871
|
//!
|
872
872
|
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
873
873
|
//! to the erased elements. No destructors are called.
|
874
|
-
iterator erase(const_iterator b, const_iterator e)
|
874
|
+
iterator erase(const_iterator b, const_iterator e) BOOST_NOEXCEPT
|
875
875
|
{ size_type n; return private_erase(b, e, n); }
|
876
876
|
|
877
877
|
//! <b>Effects</b>: Erases all the elements with the given value.
|
@@ -922,7 +922,7 @@ class treap_impl
|
|
922
922
|
//! <b>Note</b>: Invalidates the iterators
|
923
923
|
//! to the erased elements.
|
924
924
|
template<class Disposer>
|
925
|
-
iterator erase_and_dispose(const_iterator i, Disposer disposer)
|
925
|
+
iterator erase_and_dispose(const_iterator i, Disposer disposer) BOOST_NOEXCEPT
|
926
926
|
{
|
927
927
|
node_ptr to_erase(i.pointed_node());
|
928
928
|
iterator ret(this->erase(i));
|
@@ -932,7 +932,7 @@ class treap_impl
|
|
932
932
|
|
933
933
|
#if !defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED)
|
934
934
|
template<class Disposer>
|
935
|
-
iterator erase_and_dispose(iterator i, Disposer disposer)
|
935
|
+
iterator erase_and_dispose(iterator i, Disposer disposer) BOOST_NOEXCEPT
|
936
936
|
{ return this->erase_and_dispose(const_iterator(i), disposer); }
|
937
937
|
#endif
|
938
938
|
|
@@ -949,7 +949,7 @@ class treap_impl
|
|
949
949
|
//! <b>Note</b>: Invalidates the iterators
|
950
950
|
//! to the erased elements.
|
951
951
|
template<class Disposer>
|
952
|
-
iterator erase_and_dispose(const_iterator b, const_iterator e, Disposer disposer)
|
952
|
+
iterator erase_and_dispose(const_iterator b, const_iterator e, Disposer disposer) BOOST_NOEXCEPT
|
953
953
|
{ size_type n; return private_erase(b, e, n, disposer); }
|
954
954
|
|
955
955
|
//! <b>Requires</b>: Disposer::operator()(pointer) shouldn't throw.
|
@@ -1010,7 +1010,7 @@ class treap_impl
|
|
1010
1010
|
//!
|
1011
1011
|
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
1012
1012
|
//! to the erased elements. No destructors are called.
|
1013
|
-
void clear()
|
1013
|
+
void clear() BOOST_NOEXCEPT
|
1014
1014
|
{ tree_type::clear(); }
|
1015
1015
|
|
1016
1016
|
//! <b>Effects</b>: Erases all of the elements calling disposer(p) for
|
@@ -1023,7 +1023,7 @@ class treap_impl
|
|
1023
1023
|
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
1024
1024
|
//! to the erased elements. Calls N times to disposer functor.
|
1025
1025
|
template<class Disposer>
|
1026
|
-
void clear_and_dispose(Disposer disposer)
|
1026
|
+
void clear_and_dispose(Disposer disposer) BOOST_NOEXCEPT
|
1027
1027
|
{
|
1028
1028
|
node_algorithms::clear_and_dispose(this->tree_type::header_ptr()
|
1029
1029
|
, detail::node_disposer<Disposer, value_traits, TreapAlgorithms>(disposer, &this->get_value_traits()));
|
@@ -1180,28 +1180,28 @@ class treap_impl
|
|
1180
1180
|
(const KeyType& lower_key, const KeyType& upper_key, KeyTypeKeyCompare comp, bool left_closed, bool right_closed) const;
|
1181
1181
|
|
1182
1182
|
//! @copydoc ::boost::intrusive::bstree::s_iterator_to(reference)
|
1183
|
-
static iterator s_iterator_to(reference value);
|
1183
|
+
static iterator s_iterator_to(reference value) BOOST_NOEXCEPT;
|
1184
1184
|
|
1185
1185
|
//! @copydoc ::boost::intrusive::bstree::s_iterator_to(const_reference)
|
1186
|
-
static const_iterator s_iterator_to(const_reference value);
|
1186
|
+
static const_iterator s_iterator_to(const_reference value) BOOST_NOEXCEPT;
|
1187
1187
|
|
1188
1188
|
//! @copydoc ::boost::intrusive::bstree::iterator_to(reference)
|
1189
|
-
iterator iterator_to(reference value);
|
1189
|
+
iterator iterator_to(reference value) BOOST_NOEXCEPT;
|
1190
1190
|
|
1191
1191
|
//! @copydoc ::boost::intrusive::bstree::iterator_to(const_reference)const
|
1192
|
-
const_iterator iterator_to(const_reference value) const;
|
1192
|
+
const_iterator iterator_to(const_reference value) const BOOST_NOEXCEPT;
|
1193
1193
|
|
1194
1194
|
//! @copydoc ::boost::intrusive::bstree::init_node(reference)
|
1195
|
-
static void init_node(reference value);
|
1195
|
+
static void init_node(reference value) BOOST_NOEXCEPT;
|
1196
1196
|
|
1197
1197
|
//! @copydoc ::boost::intrusive::bstree::unlink_leftmost_without_rebalance
|
1198
|
-
pointer unlink_leftmost_without_rebalance();
|
1198
|
+
pointer unlink_leftmost_without_rebalance() BOOST_NOEXCEPT;
|
1199
1199
|
|
1200
1200
|
//! @copydoc ::boost::intrusive::bstree::replace_node
|
1201
|
-
void replace_node(iterator replace_this, reference with_this);
|
1201
|
+
void replace_node(iterator replace_this, reference with_this) BOOST_NOEXCEPT;
|
1202
1202
|
|
1203
1203
|
//! @copydoc ::boost::intrusive::bstree::remove_node
|
1204
|
-
void remove_node(reference value);
|
1204
|
+
void remove_node(reference value) BOOST_NOEXCEPT;
|
1205
1205
|
|
1206
1206
|
friend bool operator< (const treap_impl &x, const treap_impl &y);
|
1207
1207
|
|
@@ -1348,16 +1348,16 @@ class treap
|
|
1348
1348
|
BOOST_INTRUSIVE_FORCEINLINE void clone_from(BOOST_RV_REF(treap) src, Cloner cloner, Disposer disposer)
|
1349
1349
|
{ Base::clone_from(BOOST_MOVE_BASE(Base, src), cloner, disposer); }
|
1350
1350
|
|
1351
|
-
BOOST_INTRUSIVE_FORCEINLINE static treap &container_from_end_iterator(iterator end_iterator)
|
1351
|
+
BOOST_INTRUSIVE_FORCEINLINE static treap &container_from_end_iterator(iterator end_iterator) BOOST_NOEXCEPT
|
1352
1352
|
{ return static_cast<treap &>(Base::container_from_end_iterator(end_iterator)); }
|
1353
1353
|
|
1354
|
-
BOOST_INTRUSIVE_FORCEINLINE static const treap &container_from_end_iterator(const_iterator end_iterator)
|
1354
|
+
BOOST_INTRUSIVE_FORCEINLINE static const treap &container_from_end_iterator(const_iterator end_iterator) BOOST_NOEXCEPT
|
1355
1355
|
{ return static_cast<const treap &>(Base::container_from_end_iterator(end_iterator)); }
|
1356
1356
|
|
1357
|
-
BOOST_INTRUSIVE_FORCEINLINE static treap &container_from_iterator(iterator it)
|
1357
|
+
BOOST_INTRUSIVE_FORCEINLINE static treap &container_from_iterator(iterator it) BOOST_NOEXCEPT
|
1358
1358
|
{ return static_cast<treap &>(Base::container_from_iterator(it)); }
|
1359
1359
|
|
1360
|
-
BOOST_INTRUSIVE_FORCEINLINE static const treap &container_from_iterator(const_iterator it)
|
1360
|
+
BOOST_INTRUSIVE_FORCEINLINE static const treap &container_from_iterator(const_iterator it) BOOST_NOEXCEPT
|
1361
1361
|
{ return static_cast<const treap &>(Base::container_from_iterator(it)); }
|
1362
1362
|
};
|
1363
1363
|
|
@@ -179,28 +179,28 @@ class treap_algorithms
|
|
179
179
|
#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
180
180
|
|
181
181
|
//! @copydoc ::boost::intrusive::bstree_algorithms::get_header(const const_node_ptr&)
|
182
|
-
static node_ptr get_header(const_node_ptr n);
|
182
|
+
static node_ptr get_header(const_node_ptr n) BOOST_NOEXCEPT;
|
183
183
|
|
184
184
|
//! @copydoc ::boost::intrusive::bstree_algorithms::begin_node
|
185
|
-
static node_ptr begin_node(const_node_ptr header);
|
185
|
+
static node_ptr begin_node(const_node_ptr header) BOOST_NOEXCEPT;
|
186
186
|
|
187
187
|
//! @copydoc ::boost::intrusive::bstree_algorithms::end_node
|
188
|
-
static node_ptr end_node(const_node_ptr header);
|
188
|
+
static node_ptr end_node(const_node_ptr header) BOOST_NOEXCEPT;
|
189
189
|
|
190
190
|
//! @copydoc ::boost::intrusive::bstree_algorithms::swap_tree
|
191
|
-
static void swap_tree(node_ptr header1, node_ptr header2);
|
191
|
+
static void swap_tree(node_ptr header1, node_ptr header2) BOOST_NOEXCEPT;
|
192
192
|
|
193
193
|
//! @copydoc ::boost::intrusive::bstree_algorithms::swap_nodes(node_ptr,node_ptr)
|
194
|
-
static void swap_nodes(node_ptr node1, node_ptr node2);
|
194
|
+
static void swap_nodes(node_ptr node1, node_ptr node2) BOOST_NOEXCEPT;
|
195
195
|
|
196
196
|
//! @copydoc ::boost::intrusive::bstree_algorithms::swap_nodes(node_ptr,node_ptr,node_ptr,node_ptr)
|
197
|
-
static void swap_nodes(node_ptr node1, node_ptr header1, node_ptr node2, node_ptr header2);
|
197
|
+
static void swap_nodes(node_ptr node1, node_ptr header1, node_ptr node2, node_ptr header2) BOOST_NOEXCEPT;
|
198
198
|
|
199
199
|
//! @copydoc ::boost::intrusive::bstree_algorithms::replace_node(node_ptr,node_ptr)
|
200
|
-
static void replace_node(node_ptr node_to_be_replaced, node_ptr new_node);
|
200
|
+
static void replace_node(node_ptr node_to_be_replaced, node_ptr new_node) BOOST_NOEXCEPT;
|
201
201
|
|
202
202
|
//! @copydoc ::boost::intrusive::bstree_algorithms::replace_node(node_ptr,node_ptr,node_ptr)
|
203
|
-
static void replace_node(node_ptr node_to_be_replaced, node_ptr header, node_ptr new_node);
|
203
|
+
static void replace_node(node_ptr node_to_be_replaced, node_ptr header, node_ptr new_node) BOOST_NOEXCEPT;
|
204
204
|
#endif //#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
205
205
|
|
206
206
|
//! @copydoc ::boost::intrusive::bstree_algorithms::unlink(node_ptr)
|
@@ -217,25 +217,25 @@ class treap_algorithms
|
|
217
217
|
|
218
218
|
#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
219
219
|
//! @copydoc ::boost::intrusive::bstree_algorithms::unlink_leftmost_without_rebalance
|
220
|
-
static node_ptr unlink_leftmost_without_rebalance(node_ptr header);
|
220
|
+
static node_ptr unlink_leftmost_without_rebalance(node_ptr header) BOOST_NOEXCEPT;
|
221
221
|
|
222
222
|
//! @copydoc ::boost::intrusive::bstree_algorithms::unique(const const_node_ptr&)
|
223
|
-
static bool unique(const_node_ptr node);
|
223
|
+
static bool unique(const_node_ptr node) BOOST_NOEXCEPT;
|
224
224
|
|
225
225
|
//! @copydoc ::boost::intrusive::bstree_algorithms::size(const const_node_ptr&)
|
226
|
-
static std::size_t size(const_node_ptr header);
|
226
|
+
static std::size_t size(const_node_ptr header) BOOST_NOEXCEPT;
|
227
227
|
|
228
228
|
//! @copydoc ::boost::intrusive::bstree_algorithms::next_node(const node_ptr&)
|
229
|
-
static node_ptr next_node(node_ptr node);
|
229
|
+
static node_ptr next_node(node_ptr node) BOOST_NOEXCEPT;
|
230
230
|
|
231
231
|
//! @copydoc ::boost::intrusive::bstree_algorithms::prev_node(const node_ptr&)
|
232
|
-
static node_ptr prev_node(node_ptr node);
|
232
|
+
static node_ptr prev_node(node_ptr node) BOOST_NOEXCEPT;
|
233
233
|
|
234
234
|
//! @copydoc ::boost::intrusive::bstree_algorithms::init(node_ptr)
|
235
|
-
static void init(node_ptr node);
|
235
|
+
static void init(node_ptr node) BOOST_NOEXCEPT;
|
236
236
|
|
237
237
|
//! @copydoc ::boost::intrusive::bstree_algorithms::init_header(node_ptr)
|
238
|
-
static void init_header(node_ptr header);
|
238
|
+
static void init_header(node_ptr header) BOOST_NOEXCEPT;
|
239
239
|
#endif //#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
240
240
|
|
241
241
|
//! @copydoc ::boost::intrusive::bstree_algorithms::erase(node_ptr,node_ptr)
|
@@ -255,7 +255,7 @@ class treap_algorithms
|
|
255
255
|
|
256
256
|
//! @copydoc ::boost::intrusive::bstree_algorithms::clear_and_dispose(const node_ptr&,Disposer)
|
257
257
|
template<class Disposer>
|
258
|
-
static void clear_and_dispose(node_ptr header, Disposer disposer);
|
258
|
+
static void clear_and_dispose(node_ptr header, Disposer disposer) BOOST_NOEXCEPT;
|
259
259
|
|
260
260
|
//! @copydoc ::boost::intrusive::bstree_algorithms::lower_bound(const const_node_ptr&,const KeyType&,KeyNodePtrCompare)
|
261
261
|
template<class KeyType, class KeyNodePtrCompare>
|
@@ -564,7 +564,7 @@ class treap_algorithms
|
|
564
564
|
//! previously executed to fill "commit_data". No value should be inserted or
|
565
565
|
//! erased between the "insert_check" and "insert_commit" calls.
|
566
566
|
static void insert_unique_commit
|
567
|
-
(node_ptr header, node_ptr new_node, const insert_commit_data &commit_data)
|
567
|
+
(node_ptr header, node_ptr new_node, const insert_commit_data &commit_data) BOOST_NOEXCEPT
|
568
568
|
{
|
569
569
|
bstree_algo::insert_unique_commit(header, new_node, commit_data);
|
570
570
|
rotate_up_n(header, new_node, commit_data.rotations);
|
@@ -601,7 +601,7 @@ class treap_algorithms
|
|
601
601
|
#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
602
602
|
|
603
603
|
//! @copydoc ::boost::intrusive::bstree_algorithms::is_header
|
604
|
-
static bool is_header(const_node_ptr p);
|
604
|
+
static bool is_header(const_node_ptr p) BOOST_NOEXCEPT;
|
605
605
|
#endif //#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
606
606
|
|
607
607
|
/// @cond
|