passenger 6.0.20 → 6.0.21
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +41 -1
- data/CONTRIBUTORS +2 -0
- data/README.md +2 -2
- data/bin/passenger-install-nginx-module +4 -4
- data/build/support/cxx_dependency_map.rb +155 -54
- data/dev/copy_boost_headers +21 -7
- data/dev/nginx_version_sha256 +72 -0
- data/src/agent/AgentMain.cpp +2 -8
- data/src/agent/Core/AdminPanelConnector.h +2 -3
- data/src/agent/Core/ApiServer.h +1 -1
- data/src/agent/Core/ApplicationPool/Pool/StateInspection.cpp +8 -1
- data/src/agent/Core/Config.h +6 -3
- data/src/agent/Core/Controller/AppResponse.h +0 -1
- data/src/agent/Core/Controller/Config.h +2 -2
- data/src/agent/Core/Controller/SendRequest.cpp +2 -2
- data/src/agent/Core/CoreMain.cpp +1 -0
- data/src/agent/Core/ResponseCache.h +3 -2
- data/src/agent/Core/SecurityUpdateChecker.h +1 -1
- data/src/agent/Core/SpawningKit/Handshake/Perform.h +4 -4
- data/src/agent/Core/SpawningKit/UserSwitchingRules.h +2 -2
- data/src/agent/ExecHelper/ExecHelperMain.cpp +10 -12
- data/src/agent/FileReadHelper/FileReadHelperMain.cpp +7 -10
- data/src/agent/MainFunctions.h +38 -0
- data/src/agent/Shared/ApiServerUtils.h +3 -2
- data/src/agent/Shared/Fundamentals/Initialization.cpp +1 -1
- data/src/agent/SpawnEnvSetupper/SpawnEnvSetupperMain.cpp +2 -3
- data/src/agent/SystemMetrics/SystemMetricsMain.cpp +1 -0
- data/src/agent/TempDirToucher/TempDirToucherMain.cpp +6 -4
- data/src/agent/Watchdog/ApiServer.h +1 -1
- data/src/agent/Watchdog/Config.h +1 -1
- data/src/agent/Watchdog/WatchdogMain.cpp +5 -12
- data/src/apache2_module/Hooks.cpp +26 -1
- data/src/cxx_supportlib/ConfigKit/Common.h +1 -1
- data/src/cxx_supportlib/Constants.h +1 -1
- data/src/cxx_supportlib/DataStructures/StringKeyTable.h +1 -1
- data/src/cxx_supportlib/FileTools/PathManip.cpp +10 -1
- data/src/cxx_supportlib/IOTools/IOUtils.cpp +2 -6
- data/src/cxx_supportlib/Integrations/LibevJsonUtils.h +3 -3
- data/src/cxx_supportlib/JsonTools/CBindings.cpp +0 -2
- data/src/cxx_supportlib/JsonTools/JsonUtils.h +4 -4
- data/src/cxx_supportlib/LoggingKit/Context.h +16 -21
- data/src/cxx_supportlib/LoggingKit/Forward.h +0 -2
- data/src/cxx_supportlib/LoggingKit/Implementation.cpp +36 -72
- data/src/cxx_supportlib/MemoryKit/mbuf.cpp +12 -4
- data/src/cxx_supportlib/MemoryKit/mbuf.h +1 -1
- data/src/cxx_supportlib/ProcessManagement/Utils.cpp +1 -1
- data/src/cxx_supportlib/ResourceLocator.h +1 -1
- data/src/cxx_supportlib/SecurityKit/Crypto.cpp +3 -94
- data/src/cxx_supportlib/SecurityKit/Crypto.h +0 -8
- data/src/cxx_supportlib/ServerKit/Context.h +6 -0
- data/src/cxx_supportlib/ServerKit/Errors.h +3 -2
- data/src/cxx_supportlib/ServerKit/HttpHeaderParser.h +96 -64
- data/src/cxx_supportlib/ServerKit/HttpHeaderParserState.h +4 -1
- data/src/cxx_supportlib/ServerKit/HttpRequest.h +2 -2
- data/src/cxx_supportlib/ServerKit/HttpServer.h +3 -2
- data/src/cxx_supportlib/ServerKit/llerrors.h +84 -0
- data/src/cxx_supportlib/ServerKit/llhttp.c +10168 -0
- data/src/cxx_supportlib/ServerKit/llhttp.h +903 -0
- data/src/cxx_supportlib/ServerKit/llhttp_api.c +510 -0
- data/src/cxx_supportlib/ServerKit/llhttp_http.c +170 -0
- data/src/cxx_supportlib/ServerKit/llversion.h +12 -0
- data/src/cxx_supportlib/ServerKit/url_parser.c +574 -0
- data/src/cxx_supportlib/ServerKit/url_parser.h +74 -0
- data/src/cxx_supportlib/StaticString.h +3 -1
- data/src/cxx_supportlib/StrIntTools/DateParsing.h +1 -1
- data/src/cxx_supportlib/StrIntTools/StrIntUtils.cpp +12 -3
- data/src/cxx_supportlib/StrIntTools/StrIntUtils.h +5 -0
- data/src/cxx_supportlib/SystemTools/SystemMetricsCollector.h +2 -2
- data/src/cxx_supportlib/SystemTools/UserDatabase.cpp +14 -14
- data/src/cxx_supportlib/SystemTools/UserDatabase.h +6 -10
- data/src/cxx_supportlib/Utils/AnsiColorConstants.h +11 -9
- data/src/cxx_supportlib/Utils.cpp +1 -1
- data/src/cxx_supportlib/oxt/implementation.cpp +1 -2
- data/src/cxx_supportlib/oxt/system_calls.cpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_executor.hpp +26 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_handler.hpp +61 -62
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_io_executor.hpp +34 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/append.hpp +10 -23
- data/src/cxx_supportlib/vendor-modified/boost/asio/as_tuple.hpp +21 -34
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +26 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +26 -43
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +28 -46
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_immediate_executor.hpp +42 -59
- data/src/cxx_supportlib/vendor-modified/boost/asio/associator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +154 -883
- data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +64 -98
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +17 -22
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_file.hpp +18 -23
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_io_object.hpp +4 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_random_access_file.hpp +30 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +65 -96
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_readable_pipe.hpp +20 -29
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +36 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_serial_port.hpp +31 -44
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_signal_set.hpp +19 -22
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +34 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +106 -153
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_iostream.hpp +6 -82
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_streambuf.hpp +6 -51
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_file.hpp +30 -40
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +50 -76
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf.hpp +13 -15
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf_fwd.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +23 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_writable_pipe.hpp +20 -29
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_allocator.hpp +75 -294
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +75 -283
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +89 -288
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_immediate_executor.hpp +73 -275
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer.hpp +170 -328
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer_registration.hpp +29 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream.hpp +26 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream.hpp +32 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream.hpp +26 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffers_iterator.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_signal.hpp +25 -85
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_state.hpp +16 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_type.hpp +8 -25
- data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +17 -17
- data/src/cxx_supportlib/vendor-modified/boost/asio/completion_condition.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/compose.hpp +53 -272
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +52 -79
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect_pipe.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/consign.hpp +11 -24
- data/src/cxx_supportlib/vendor-modified/boost/asio/coroutine.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/defer.hpp +22 -26
- data/src/cxx_supportlib/vendor-modified/boost/asio/deferred.hpp +188 -275
- data/src/cxx_supportlib/vendor-modified/boost/asio/detached.hpp +12 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array.hpp +2 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array_fwd.hpp +2 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/assert.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/atomic_count.hpp +5 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_cancellation_state.hpp +21 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_completion_cond.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +129 -563
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/blocking_executor_op.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_resize_guard.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_sequence_adapter.hpp +3 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffered_stream_storage.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/call_stack.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono.hpp +2 -23
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono_time_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_handler.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/composed_work.hpp +21 -97
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/concurrency_hint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_event.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +91 -975
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/consuming_buffers.hpp +3 -11
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstddef.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstdint.hpp +2 -24
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/date_time_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dependent_type.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_ops.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_read_op.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_write_op.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/event.hpp +3 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/eventfd_select_interrupter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/exception.hpp +2 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_function.hpp +8 -60
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_op.hpp +5 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fd_set_adapter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fenced_block.hpp +3 -43
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +1 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/future.hpp +9 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/global.hpp +3 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +41 -104
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_cont_helpers.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_tracking.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +9 -15
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +73 -127
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/hash_map.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/buffer_sequence_adapter.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/descriptor_ops.ipp +32 -11
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/eventfd_select_interrupter.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/handler_tracking.ipp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_descriptor_service.ipp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_file_service.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_socket_service_base.ipp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/null_event.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/pipe_select_interrupter.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_event.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_mutex.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_serial_port_service.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_thread.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_tss_ptr.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_descriptor_service.ipp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_socket_service_base.ipp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/resolver_service_base.ipp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/scheduler.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/signal_set_service.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_ops.ipp +63 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_select_interrupter.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +47 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/thread_context.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/throw_error.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_set.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_defer.hpp +56 -101
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_dispatch.hpp +56 -92
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_post.hpp +56 -101
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_control.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_object_impl.hpp +6 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_at_op.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_op.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_service.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_at_op.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_op.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_file_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_null_buffers_op.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_operation.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_accept_op.hpp +7 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_connect_op.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recv_op.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvfrom_op.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvmsg_op.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_send_op.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_sendto_op.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service.hpp +11 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service_base.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_wait_op.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_buffer_sequence.hpp +7 -49
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/keyword_tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/limits.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/local_free_on_block_exit.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +12 -44
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/mutex.hpp +3 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/non_const_lvalue.hpp +4 -15
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/noncopyable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_event.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_global.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_reactor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_signal_blocker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_socket_service.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_static_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_thread.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/object_pool.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/op_queue.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/operation.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pipe_select_interrupter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_event.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_fd_set_adapter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_global.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_serial_port_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_signal_blocker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_static_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_thread.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_null_buffers_op.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_accept_op.hpp +11 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_connect_op.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recv_op.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvfrom_op.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvmsg_op.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_send_op.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_sendto_op.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +11 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +15 -15
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_wait_op.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/recycling_allocator.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/regex_fwd.hpp +4 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_query_op.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_operation.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_task.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_thread_info.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_lock.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_interrupter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/service_registry.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_blocker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_handler.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_init.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_set_service.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_holder.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_ops.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_option.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_select_interrupter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_types.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/source_location.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/static_mutex.hpp +3 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_event.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_fenced_block.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_global.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_mutex.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_static_mutex.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_thread.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_executor_service.hpp +13 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/string_view.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread.hpp +3 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_group.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +12 -22
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_error.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_exception.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_set.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/type_traits.hpp +104 -90
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/utility.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_handler.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/winsock_init.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +20 -34
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wrapped_handler.hpp +7 -117
- data/src/cxx_supportlib/vendor-modified/boost/asio/dispatch.hpp +21 -26
- data/src/cxx_supportlib/vendor-modified/boost/asio/error.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/allocator.hpp +34 -112
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +229 -1019
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bad_executor.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking.hpp +296 -536
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking_adaptation.hpp +232 -409
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context.hpp +20 -73
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context_as.hpp +30 -72
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/executor.hpp +24 -170
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/bad_executor.ipp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/invocable_archetype.hpp +2 -30
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/mapping.hpp +240 -398
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/occupancy.hpp +20 -73
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/outstanding_work.hpp +149 -296
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/prefer_only.hpp +56 -59
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/relationship.hpp +149 -296
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution.hpp +1 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution_context.hpp +1 -25
- data/src/cxx_supportlib/vendor-modified/boost/asio/executor.hpp +59 -43
- data/src/cxx_supportlib/vendor-modified/boost/asio/executor_work_guard.hpp +56 -61
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/append.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_single.hpp +20 -24
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_tuple.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/awaitable_operators.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_channel.hpp +55 -33
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_concurrent_channel.hpp +55 -33
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/cancellation_condition.hpp +25 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_error.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_traits.hpp +15 -15
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_composed.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/concurrent_channel.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/deferred.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_handler.hpp +10 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_message.hpp +20 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_operation.hpp +130 -53
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_payload.hpp +92 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_receive_op.hpp +15 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_functions.hpp +73 -25
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_op.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_service.hpp +48 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/has_signature.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/impl/channel_service.hpp +39 -30
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +33 -96
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/channel_error.ipp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/co_composed.hpp +16 -17
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/coro.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +56 -60
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_promise.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +27 -31
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/prepend.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +14 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_promise.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/asio/file_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/basic_endpoint.hpp +2 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/datagram_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/impl/endpoint.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/raw_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/seq_packet_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/stream_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_continuation_hook.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/high_resolution_timer.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_completion_executor.ipp +10 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_io_executor.ipp +10 -17
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/append.hpp +37 -100
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/as_tuple.hpp +62 -137
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +22 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +55 -178
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +55 -178
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancellation_signal.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +44 -36
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +84 -234
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/consign.hpp +32 -97
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/deferred.hpp +32 -41
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/detached.hpp +5 -58
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/error.ipp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.hpp +3 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.hpp +60 -43
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.ipp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.hpp +39 -56
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/multiple_exceptions.ipp +4 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/prepend.hpp +36 -98
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +206 -429
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +60 -206
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +456 -970
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +36 -420
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +205 -421
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.ipp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_executor.hpp +19 -25
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.hpp +32 -109
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_future.hpp +77 -423
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +213 -427
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +58 -194
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +91 -120
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context_strand.hpp +33 -25
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_service_strand.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address.hpp +26 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4.hpp +25 -34
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_iterator.hpp +13 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_range.hpp +16 -22
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6.hpp +33 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_iterator.hpp +13 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_range.hpp +15 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/bad_address_cast.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_endpoint.hpp +26 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver.hpp +46 -76
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_entry.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_iterator.hpp +4 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_query.hpp +17 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_results.hpp +9 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/endpoint.hpp +17 -17
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/impl/endpoint.ipp +10 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/socket_option.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/host_name.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/icmp.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.ipp +18 -22
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.ipp +9 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.ipp +24 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/basic_endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/host_name.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.ipp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.ipp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/multicast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v4.hpp +16 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v6.hpp +14 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_query_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/tcp.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/udp.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/unicast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/v6_only.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_applicable_property.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_contiguous_iterator.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_read_buffered.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_write_buffered.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/basic_endpoint.hpp +2 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/connect_pair.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/datagram_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/seq_packet_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/stream_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/multiple_exceptions.hpp +3 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/packaged_task.hpp +1 -61
- data/src/cxx_supportlib/vendor-modified/boost/asio/placeholders.hpp +29 -105
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +21 -29
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +24 -34
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/post.hpp +21 -26
- data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +176 -333
- data/src/cxx_supportlib/vendor-modified/boost/asio/prepend.hpp +11 -23
- data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +57 -70
- data/src/cxx_supportlib/vendor-modified/boost/asio/random_access_file.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +136 -168
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +35 -52
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +256 -298
- data/src/cxx_supportlib/vendor-modified/boost/asio/readable_pipe.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/recycling_allocator.hpp +15 -15
- data/src/cxx_supportlib/vendor-modified/boost/asio/redirect_error.hpp +7 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/registered_buffer.hpp +35 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +108 -246
- data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +70 -79
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set_base.hpp +10 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/socket_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/spawn.hpp +127 -161
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +3 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +3 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/openssl_init.ipp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +16 -75
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_init.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_types.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/password_callback.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +15 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/verify_callback.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/error.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/host_name_verification.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +2 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/error.ipp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/host_name_verification.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/rfc2818_verification.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/src.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/rfc2818_verification.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +51 -82
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_mode.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/static_thread_pool.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/steady_timer.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/strand.hpp +91 -118
- data/src/cxx_supportlib/vendor-modified/boost/asio/stream_file.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/streambuf.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_context.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +62 -62
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_timer.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +35 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +91 -273
- data/src/cxx_supportlib/vendor-modified/boost/asio/time_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/equality_comparable.hpp +14 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_member.hpp +16 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_free.hpp +16 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_member.hpp +16 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_free.hpp +16 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_member.hpp +16 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_static_constexpr_member.hpp +15 -22
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_free.hpp +16 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_member.hpp +16 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_free.hpp +16 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_member.hpp +16 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_query.hpp +20 -26
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require.hpp +22 -30
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require_concept.hpp +22 -30
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/buffer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/internet.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/io_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/net.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/netfwd.hpp +6 -24
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/socket.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/unyield.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_awaitable.hpp +15 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_future.hpp +8 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/uses_executor.hpp +2 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/wait_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/writable_pipe.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +122 -146
- data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +34 -50
- data/src/cxx_supportlib/vendor-modified/boost/asio/yield.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +1 -27
- data/src/cxx_supportlib/vendor-modified/boost/assert/source_location.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_ref.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_ref_impl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations_emulated.hpp +12 -13
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_ops_emulated.hpp +7 -8
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_emulated.hpp +26 -27
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/float_sizes.hpp +122 -35
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fp_ops_emulated.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/pause.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_on_address.hpp +1 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_emulated.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_ref.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/bind/apply.hpp +2 -61
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind.hpp +229 -1740
- data/src/cxx_supportlib/vendor-modified/boost/bind/{bind_cc.hpp → detail/bind_cc.hpp} +20 -20
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/bind_mf2_cc.hpp +210 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/bind_mf_cc.hpp +405 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/integer_sequence.hpp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/tuple_for_each.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn.hpp +138 -289
- data/src/cxx_supportlib/vendor-modified/boost/bind/placeholders.hpp +3 -16
- data/src/cxx_supportlib/vendor-modified/boost/bind/protect.hpp +0 -280
- data/src/cxx_supportlib/vendor-modified/boost/bind/std_placeholders.hpp +0 -7
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/is_evenly_divisible_by.hpp +1 -7
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/requires_cxx11.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/chrono/duration.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_units.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/system_clocks.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx03.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx11.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx14.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx17.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx20.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx23.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/borland.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang_version.hpp +8 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/codegear.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/common_edg.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/digitalmars.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc_xml.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/hp_acc.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/metrowerks.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/mpw.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/nvcc.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/pathscale.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/sunpro_cc.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/vacpp.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/visualc.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp_zos.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/cxx_composite.hpp +16 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +6 -7
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +18 -19
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator_traits.hpp +27 -29
- data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +112 -112
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/advanced_insert_int.hpp +40 -40
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/alloc_helpers.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/allocator_version_traits.hpp +10 -10
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/compare_functors.hpp +22 -22
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/copy_move_algo.hpp +30 -25
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/destroyers.hpp +48 -48
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/dispatch_uses_allocator.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +129 -129
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterators.hpp +162 -163
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/math_functions.hpp +1 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/next_capacity.hpp +6 -8
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_alloc_holder.hpp +32 -32
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool_impl.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/pair.hpp +18 -19
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/transform_iterator.hpp +28 -28
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/tree.hpp +77 -77
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/value_init.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/workaround.hpp +44 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +78 -78
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_map.hpp +231 -231
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_set.hpp +85 -85
- data/src/cxx_supportlib/vendor-modified/boost/container/list.hpp +33 -33
- data/src/cxx_supportlib/vendor-modified/boost/container/map.hpp +107 -109
- data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +9 -11
- data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +10 -11
- data/src/cxx_supportlib/vendor-modified/boost/container/node_handle.hpp +18 -8
- data/src/cxx_supportlib/vendor-modified/boost/container/options.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/resource_adaptor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/scoped_allocator.hpp +80 -80
- data/src/cxx_supportlib/vendor-modified/boost/container/set.hpp +81 -81
- data/src/cxx_supportlib/vendor-modified/boost/container/slist.hpp +24 -24
- data/src/cxx_supportlib/vendor-modified/boost/container/small_vector.hpp +115 -109
- data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +101 -101
- data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +32 -32
- data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +150 -190
- data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +165 -165
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_integral.hpp +146 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_mix.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_range.hpp +84 -86
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_tuple_like.hpp +5 -99
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/mulx.hpp +20 -20
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash.hpp +25 -126
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_contiguous_range.hpp +27 -21
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_described_class.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_range.hpp +8 -41
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_tuple_like.hpp +4 -10
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_unordered_range.hpp +6 -7
- data/src/cxx_supportlib/vendor-modified/boost/core/allocator_access.hpp +20 -6
- data/src/cxx_supportlib/vendor-modified/boost/core/bit.hpp +19 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/checked_delete.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/sp_thread_pause.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/string_view.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/fclose_deleter.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/functor.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/invoke_swap.hpp +93 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/launder.hpp +17 -3
- data/src/cxx_supportlib/vendor-modified/boost/core/null_deleter.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/swap.hpp +6 -55
- data/src/cxx_supportlib/vendor-modified/boost/detail/basic_pointerbuf.hpp +3 -6
- data/src/cxx_supportlib/vendor-modified/boost/detail/lcast_precision.hpp +6 -97
- data/src/cxx_supportlib/vendor-modified/boost/exception/current_exception_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/clone_current_exception.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/error_info_impl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/exception_ptr.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/is_output_streamable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/object_hex_dump.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/{ratio → exception}/detail/requires_cxx11.hpp +7 -5
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/type_info.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/exception/diagnostic_information.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/exception/exception.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/exception/get_error_info.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/exception/info.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/exception/to_string.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/exception/to_string_stub.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/function/function0.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function1.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function10.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function2.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function3.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function4.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function5.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function6.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function7.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function8.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function9.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function_base.hpp +21 -166
- data/src/cxx_supportlib/vendor-modified/boost/function/function_fwd.hpp +36 -41
- data/src/cxx_supportlib/vendor-modified/boost/function/function_template.hpp +267 -418
- data/src/cxx_supportlib/vendor-modified/boost/function/function_typeof.hpp +1 -31
- data/src/cxx_supportlib/vendor-modified/boost/function.hpp +5 -63
- data/src/cxx_supportlib/vendor-modified/boost/integer/extended_euclidean.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +24 -25
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +12 -13
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +24 -25
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +65 -66
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +20 -20
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +10 -10
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.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/default_header_holder.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/ebo_functor_holder.hpp +24 -24
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/equal_to_value.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/exception_disposer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/generic_hook.hpp +14 -15
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash.hpp +277 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_combine.hpp +11 -49
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_integral.hpp +119 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_mix.hpp +130 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +41 -41
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hook_traits.hpp +14 -21
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iiterator.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iterator.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/key_nodeptr_comp.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_iterator.hpp +19 -19
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/mpl.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_cloner_disposer.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/parent_from_member.hpp +6 -17
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/simple_disposers.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/size_holder.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_iterator.hpp +20 -21
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/transform_iterator.hpp +22 -22
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_iterator.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_value_compare.hpp +28 -28
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +32 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +268 -239
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +56 -57
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pack_options.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/priority_compare.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +12 -13
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +24 -25
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +24 -25
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +14 -15
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +60 -61
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +24 -25
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +12 -13
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +18 -19
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +36 -37
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +37 -34
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/io/ios_state.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/bad_lexical_cast.hpp +7 -13
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/buffer_view.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical.hpp +113 -131
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +611 -633
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +85 -79
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/inf_nan.hpp +25 -32
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/is_character.hpp +22 -29
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_basic_unlockedbuf.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_char_constants.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_unsigned_converters.hpp +21 -16
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/widest_char.hpp +7 -9
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/try_lexical_convert.hpp +22 -161
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast.hpp +9 -30
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/chrono.cpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/process_cpu_clocks.cpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/thread_clock.cpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/thread.cpp +24 -14
- data/src/cxx_supportlib/vendor-modified/boost/move/adl_move_swap.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_merge.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_sort.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/adaptive_sort_merge.hpp +5 -19
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/basic_op.hpp +10 -10
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/heap_sort.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge.hpp +15 -15
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/predicate.hpp +10 -10
- data/src/cxx_supportlib/vendor-modified/boost/move/core.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_to_raw_pointer.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/move_helpers.hpp +24 -24
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/reverse_iterator.hpp +28 -28
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/to_raw_pointer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/type_traits.hpp +67 -17
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp +5 -2
- data/src/cxx_supportlib/vendor-modified/boost/move/iterator.hpp +22 -22
- data/src/cxx_supportlib/vendor-modified/boost/move/unique_ptr.hpp +48 -48
- data/src/cxx_supportlib/vendor-modified/boost/mp11/algorithm.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/bind.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_fold.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/mp11/integer_sequence.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/integral.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/list.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/version.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/none_t.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/old_optional_implementation.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_swap.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/pool/pool.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/msvc.h +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std.h +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/make.h +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/vms.h +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/version.h +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/has_opt.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/inversive_congruential.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/random/splitmix64.hpp +203 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/subtract_with_carry.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_real_distribution.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/random.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/config.hpp +4 -87
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/gcd_lcm.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/is_evenly_divisible_by.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/is_ratio.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/include.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/ratio/ratio.hpp +5 -249
- data/src/cxx_supportlib/vendor-modified/boost/ratio/ratio_fwd.hpp +30 -56
- data/src/cxx_supportlib/vendor-modified/boost/ratio/ratio_io.hpp +0 -533
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/requires_cxx11.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ptr.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_unique.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +1 -8
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/enable_if.hpp +3 -12
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category.hpp +13 -57
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category_impl.hpp +5 -29
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.hpp +51 -124
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_condition.hpp +29 -52
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/generic_category.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/generic_category_message.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/interop_category.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp +3 -13
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/mutex.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/snprintf.hpp +1 -46
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_category.hpp +5 -9
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_category_impl.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_impl.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_message.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/system/errc.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/system/system_error.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/deque.hpp +1 -24
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/functional.hpp +1 -14
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/list.hpp +1 -14
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/allocator_arg.hpp +2 -12
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/allocator_traits.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/config.hpp +0 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/default_delete.hpp +0 -16
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/pointer_traits.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/scoped_allocator.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/shared_ptr.hpp +0 -19
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/unique_ptr.hpp +4 -6
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/queue.hpp +2 -26
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/tuple.hpp +1 -18
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/vector.hpp +1 -14
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/invoke.hpp +11 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/string_to_unsigned.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/string_trim.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/externally_locked.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/thread/future.hpp +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/futures/wait_for_any.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/synchronized_value.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/tuple/detail/tuple_basic.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/tuple/tuple.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_floating_point.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/typeof/decltype.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/typeof/incr_registration_group.hpp +1 -10
- data/src/cxx_supportlib/vendor-modified/boost/typeof/msvc/typeof_impl.hpp +5 -6
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/bitset.hpp +2 -4
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/complex.hpp +2 -4
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/deque.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/fstream.hpp +2 -15
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/functional.hpp +2 -54
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/iostream.hpp +2 -6
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/istream.hpp +2 -9
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/iterator.hpp +2 -46
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/list.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/locale.hpp +2 -29
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/map.hpp +2 -9
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/memory.hpp +2 -12
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/ostream.hpp +2 -6
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/queue.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/set.hpp +2 -9
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/sstream.hpp +2 -19
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/stack.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/streambuf.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/string.hpp +2 -12
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/utility.hpp +2 -4
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/valarray.hpp +2 -10
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/vector.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/typeof.hpp +8 -203
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_map.hpp +145 -103
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_map_fwd.hpp +1 -4
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_set.hpp +716 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_set_fwd.hpp +52 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/allocator_constructed.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/archive_constructed.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/bad_archive_exception.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/concurrent_static_asserts.hpp +105 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fca.hpp +120 -85
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/concurrent_table.hpp +531 -91
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/core.hpp +346 -194
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/element_type.hpp +10 -6
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/flat_map_types.hpp +13 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_handle.hpp +2 -8
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_map_types.hpp +22 -15
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_set_types.hpp +10 -13
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/reentrancy_check.hpp +138 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/table.hpp +150 -55
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/implementation.hpp +346 -1039
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/map.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/narrow_cast.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/opt_storage.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/prime_fmod.hpp +95 -144
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/serialization_version.hpp +74 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/serialize_container.hpp +204 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/serialize_fca_container.hpp +156 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/serialize_tracked_address.hpp +104 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/static_assert.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/throw_exception.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/type_traits.hpp +123 -19
- data/src/cxx_supportlib/vendor-modified/boost/unordered/hash_traits.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_map.hpp +65 -46
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_map_fwd.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_set.hpp +41 -23
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_set_fwd.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map.hpp +324 -997
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map_fwd.hpp +7 -12
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_map.hpp +57 -46
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_map_fwd.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_set.hpp +35 -24
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_set_fwd.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set.hpp +229 -629
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set_fwd.hpp +8 -13
- data/src/cxx_supportlib/vendor-modified/boost/utility/swap.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/utility/value_init.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/jsoncpp/jsoncpp.cpp +2 -9
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/frame.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/hybi13.hpp +14 -20
- data/src/helper-scripts/wsgi-loader.py +2 -2
- data/src/nginx_module/ConfigGeneral/ManifestGeneration.c +2 -2
- data/src/ruby_supportlib/phusion_passenger/common_library.rb +16 -5
- data/src/ruby_supportlib/phusion_passenger/config/nginx_engine_compiler.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/native_support.rb +10 -7
- data/src/ruby_supportlib/phusion_passenger/platform_info/apache.rb +3 -7
- data/src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb +14 -0
- data/src/ruby_supportlib/phusion_passenger/platform_info/cxx_portability.rb +4 -1
- data/src/ruby_supportlib/phusion_passenger/platform_info/depcheck_specs/libs.rb +6 -6
- data/src/ruby_supportlib/phusion_passenger/platform_info/pcre.rb +11 -12
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/app.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/gdb_controller.rb +4 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/lldb_controller.rb +5 -1
- data/src/ruby_supportlib/phusion_passenger.rb +8 -8
- metadata +50 -149
- data/src/cxx_supportlib/ServerKit/http_parser.cpp +0 -2575
- data/src/cxx_supportlib/ServerKit/http_parser.h +0 -452
- data/src/cxx_supportlib/vendor-modified/boost/array.hpp +0 -456
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bulk_executor_op.hpp +0 -91
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_arm_fenced_block.hpp +0 -93
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_hppa_fenced_block.hpp +0 -70
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_sync_fenced_block.hpp +0 -67
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_x86_fenced_block.hpp +0 -101
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_invoke_helpers.hpp +0 -80
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/macos_fenced_block.hpp +0 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/old_win_sdk_compat.hpp +0 -216
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/solaris_fenced_block.hpp +0 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/variadic_templates.hpp +0 -294
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_execute.hpp +0 -406
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_guarantee.hpp +0 -1254
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/connect.hpp +0 -498
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_invocable.hpp +0 -154
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_operation.hpp +0 -111
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_receiver.hpp +0 -130
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/bulk_sender.hpp +0 -263
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/submit_receiver.hpp +0 -235
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/void_receiver.hpp +0 -92
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/execute.hpp +0 -296
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/receiver_invocation_error.ipp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/operation_state.hpp +0 -101
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver.hpp +0 -287
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver_invocation_error.hpp +0 -50
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/schedule.hpp +0 -296
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/scheduler.hpp +0 -93
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/sender.hpp +0 -318
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_done.hpp +0 -259
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_error.hpp +0 -259
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_value.hpp +0 -492
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/start.hpp +0 -256
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/submit.hpp +0 -459
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_alloc_hook.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_invoke_hook.hpp +0 -113
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +0 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/bulk_execute_free.hpp +0 -116
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/bulk_execute_member.hpp +0 -116
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/connect_free.hpp +0 -114
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/connect_member.hpp +0 -114
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_free.hpp +0 -110
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/schedule_free.hpp +0 -110
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/schedule_member.hpp +0 -110
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_done_free.hpp +0 -110
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_done_member.hpp +0 -110
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_error_free.hpp +0 -114
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_error_member.hpp +0 -114
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_value_free.hpp +0 -236
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_value_member.hpp +0 -236
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/start_free.hpp +0 -110
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/start_member.hpp +0 -110
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/submit_free.hpp +0 -114
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/submit_member.hpp +0 -114
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_object_handle.hpp +0 -495
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_overlapped_handle.hpp +0 -462
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +0 -581
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +0 -563
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle.hpp +0 -40
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_handle.hpp +0 -41
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_ptr.hpp +0 -147
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_ops_windows.hpp +0 -201
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_ops_windows.hpp +0 -67
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_windows.hpp +0 -57
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_windows.hpp +0 -179
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind_mf2_cc.hpp +0 -228
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind_mf_cc.hpp +0 -441
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind_template.hpp +0 -345
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/is_same.hpp +0 -36
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/requires_cxx11.hpp +0 -22
- data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn_cc.hpp +0 -103
- data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn_template.hpp +0 -1047
- data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn_vw.hpp +0 -130
- data/src/cxx_supportlib/vendor-modified/boost/bind/storage.hpp +0 -476
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/cygwin.hpp +0 -71
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/requires_cxx11.hpp +0 -22
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/sp_win32_sleep.hpp +0 -54
- data/src/cxx_supportlib/vendor-modified/boost/detail/atomic_count.hpp +0 -21
- data/src/cxx_supportlib/vendor-modified/boost/function/detail/epilogue.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/function/detail/function_iterate.hpp +0 -16
- data/src/cxx_supportlib/vendor-modified/boost/function/detail/gen_maybe_include.pl +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/function/detail/maybe_include.hpp +0 -369
- data/src/cxx_supportlib/vendor-modified/boost/function/detail/prologue.hpp +0 -27
- data/src/cxx_supportlib/vendor-modified/boost/function/detail/requires_cxx11.hpp +0 -22
- data/src/cxx_supportlib/vendor-modified/boost/function/gen_function_N.pl +0 -26
- data/src/cxx_supportlib/vendor-modified/boost/functional/hash_fwd.hpp +0 -6
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/abs.hpp +0 -89
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/gcd.hpp +0 -124
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/lcm.hpp +0 -126
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/sign.hpp +0 -89
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/overflow_helpers.hpp +0 -367
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/ratio_io.hpp +0 -1342
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/abs.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/arithmetic.hpp +0 -22
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/comparison.hpp +0 -19
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/divides.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/equal_to.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/gcd.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/greater.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/greater_equal.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/lcm.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/less.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/less_equal.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/minus.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/negate.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/not_equal_to.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/numeric_cast.hpp +0 -31
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/plus.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/rational_c_tag.hpp +0 -25
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/rational_constant.hpp +0 -15
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/sign.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/times.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/swap.hpp +0 -17
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/requires_cxx11.hpp +0 -21
- data/src/cxx_supportlib/vendor-modified/boost/typeof/detail/requires_cxx11.hpp +0 -18
- data/src/cxx_supportlib/vendor-modified/boost/typeof/dmc/typeof_impl.hpp +0 -100
- data/src/cxx_supportlib/vendor-modified/boost/typeof/encode_decode.hpp +0 -58
- data/src/cxx_supportlib/vendor-modified/boost/typeof/encode_decode_params.hpp +0 -34
- data/src/cxx_supportlib/vendor-modified/boost/typeof/int_encoding.hpp +0 -118
- data/src/cxx_supportlib/vendor-modified/boost/typeof/integral_template_param.hpp +0 -80
- data/src/cxx_supportlib/vendor-modified/boost/typeof/message.hpp +0 -8
- data/src/cxx_supportlib/vendor-modified/boost/typeof/modifiers.hpp +0 -121
- data/src/cxx_supportlib/vendor-modified/boost/typeof/native.hpp +0 -60
- data/src/cxx_supportlib/vendor-modified/boost/typeof/pointers_data_members.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/typeof/register_functions.hpp +0 -50
- data/src/cxx_supportlib/vendor-modified/boost/typeof/register_functions_iterate.hpp +0 -135
- data/src/cxx_supportlib/vendor-modified/boost/typeof/register_fundamental.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/typeof/register_mem_functions.hpp +0 -32
- data/src/cxx_supportlib/vendor-modified/boost/typeof/template_encoding.hpp +0 -160
- data/src/cxx_supportlib/vendor-modified/boost/typeof/template_template_param.hpp +0 -149
- data/src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp +0 -27
- data/src/cxx_supportlib/vendor-modified/boost/typeof/type_template_param.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/typeof/typeof_impl.hpp +0 -187
- data/src/cxx_supportlib/vendor-modified/boost/typeof/unsupported.hpp +0 -29
- data/src/cxx_supportlib/vendor-modified/boost/typeof/vector.hpp +0 -166
- data/src/cxx_supportlib/vendor-modified/boost/typeof/vector100.hpp +0 -321
- data/src/cxx_supportlib/vendor-modified/boost/typeof/vector150.hpp +0 -471
- data/src/cxx_supportlib/vendor-modified/boost/typeof/vector200.hpp +0 -621
- data/src/cxx_supportlib/vendor-modified/boost/typeof/vector50.hpp +0 -171
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fwd.hpp +0 -150
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/requires_cxx11.hpp +0 -21
- /data/dev/{webpacketpp.patch → websocketpp.patch} +0 -0
@@ -2,7 +2,7 @@
|
|
2
2
|
// detail/config.hpp
|
3
3
|
// ~~~~~~~~~~~~~~~~~
|
4
4
|
//
|
5
|
-
// Copyright (c) 2003-
|
5
|
+
// Copyright (c) 2003-2024 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
6
6
|
//
|
7
7
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
8
8
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
@@ -93,42 +93,9 @@
|
|
93
93
|
# include <android/api-level.h>
|
94
94
|
#endif // defined(__ANDROID__)
|
95
95
|
|
96
|
-
//
|
97
|
-
#if !defined(
|
98
|
-
#
|
99
|
-
# if defined(__clang__)
|
100
|
-
# if __has_feature(__cxx_rvalue_references__)
|
101
|
-
# define BOOST_ASIO_HAS_MOVE 1
|
102
|
-
# endif // __has_feature(__cxx_rvalue_references__)
|
103
|
-
# elif defined(__GNUC__)
|
104
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
|
105
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
106
|
-
# define BOOST_ASIO_HAS_MOVE 1
|
107
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
108
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
|
109
|
-
# endif // defined(__GNUC__)
|
110
|
-
# if defined(BOOST_ASIO_MSVC)
|
111
|
-
# if (_MSC_VER >= 1700)
|
112
|
-
# define BOOST_ASIO_HAS_MOVE 1
|
113
|
-
# endif // (_MSC_VER >= 1700)
|
114
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
115
|
-
# if defined(__INTEL_CXX11_MODE__)
|
116
|
-
# if defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 1500)
|
117
|
-
# define BOOST_ASIO_HAS_MOVE 1
|
118
|
-
# endif // defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 1500)
|
119
|
-
# if defined(__ICL) && (__ICL >= 1500)
|
120
|
-
# define BOOST_ASIO_HAS_MOVE 1
|
121
|
-
# endif // defined(__ICL) && (__ICL >= 1500)
|
122
|
-
# endif // defined(__INTEL_CXX11_MODE__)
|
123
|
-
# endif // !defined(BOOST_ASIO_DISABLE_MOVE)
|
124
|
-
#endif // !defined(BOOST_ASIO_HAS_MOVE)
|
125
|
-
|
126
|
-
// If BOOST_ASIO_MOVE_CAST isn't defined, and move support is available, define
|
127
|
-
// * BOOST_ASIO_MOVE_ARG,
|
128
|
-
// * BOOST_ASIO_NONDEDUCED_MOVE_ARG, and
|
129
|
-
// * BOOST_ASIO_MOVE_CAST
|
130
|
-
// to take advantage of rvalue references and perfect forwarding.
|
131
|
-
#if defined(BOOST_ASIO_HAS_MOVE) && !defined(BOOST_ASIO_MOVE_CAST)
|
96
|
+
// Always enabled. Retained for backwards compatibility in user code.
|
97
|
+
#if !defined(BOOST_ASIO_DISABLE_CXX11_MACROS)
|
98
|
+
# define BOOST_ASIO_HAS_MOVE 1
|
132
99
|
# define BOOST_ASIO_MOVE_ARG(type) type&&
|
133
100
|
# define BOOST_ASIO_MOVE_ARG2(type1, type2) type1, type2&&
|
134
101
|
# define BOOST_ASIO_NONDEDUCED_MOVE_ARG(type) type&
|
@@ -137,202 +104,96 @@
|
|
137
104
|
# define BOOST_ASIO_MOVE_OR_LVALUE(type) static_cast<type&&>
|
138
105
|
# define BOOST_ASIO_MOVE_OR_LVALUE_ARG(type) type&&
|
139
106
|
# define BOOST_ASIO_MOVE_OR_LVALUE_TYPE(type) type
|
140
|
-
#
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
#
|
148
|
-
#
|
149
|
-
#
|
150
|
-
#
|
151
|
-
#
|
152
|
-
#
|
153
|
-
#
|
154
|
-
#
|
155
|
-
#
|
156
|
-
#
|
157
|
-
#
|
158
|
-
#
|
159
|
-
#
|
160
|
-
#
|
161
|
-
#
|
162
|
-
#
|
163
|
-
|
164
|
-
#
|
165
|
-
#
|
166
|
-
# define BOOST_ASIO_MOVE_OR_LVALUE(type)
|
167
|
-
# define BOOST_ASIO_MOVE_OR_LVALUE_ARG(type) type&
|
168
|
-
# define BOOST_ASIO_MOVE_OR_LVALUE_TYPE(type) type&
|
169
|
-
#endif // !defined(BOOST_ASIO_MOVE_CAST)
|
170
|
-
|
171
|
-
// Support variadic templates on compilers known to allow it.
|
172
|
-
#if !defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
173
|
-
# if !defined(BOOST_ASIO_DISABLE_VARIADIC_TEMPLATES)
|
174
|
-
# if defined(__clang__)
|
175
|
-
# if __has_feature(__cxx_variadic_templates__)
|
176
|
-
# define BOOST_ASIO_HAS_VARIADIC_TEMPLATES 1
|
177
|
-
# endif // __has_feature(__cxx_variadic_templates__)
|
178
|
-
# elif defined(__GNUC__)
|
179
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
|
180
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
181
|
-
# define BOOST_ASIO_HAS_VARIADIC_TEMPLATES 1
|
182
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
183
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
|
184
|
-
# endif // defined(__GNUC__)
|
185
|
-
# if defined(BOOST_ASIO_MSVC)
|
186
|
-
# if (_MSC_VER >= 1900)
|
187
|
-
# define BOOST_ASIO_HAS_VARIADIC_TEMPLATES 1
|
188
|
-
# endif // (_MSC_VER >= 1900)
|
189
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
190
|
-
# endif // !defined(BOOST_ASIO_DISABLE_VARIADIC_TEMPLATES)
|
191
|
-
#endif // !defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
192
|
-
#if !defined(BOOST_ASIO_ELLIPSIS)
|
193
|
-
# if defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
194
|
-
# define BOOST_ASIO_ELLIPSIS ...
|
195
|
-
# else // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
196
|
-
# define BOOST_ASIO_ELLIPSIS
|
197
|
-
# endif // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
198
|
-
#endif // !defined(BOOST_ASIO_ELLIPSIS)
|
199
|
-
|
200
|
-
// Support deleted functions on compilers known to allow it.
|
201
|
-
#if !defined(BOOST_ASIO_DELETED)
|
202
|
-
# if defined(__clang__)
|
203
|
-
# if __has_feature(__cxx_deleted_functions__)
|
204
|
-
# define BOOST_ASIO_DELETED = delete
|
205
|
-
# endif // __has_feature(__cxx_deleted_functions__)
|
206
|
-
# elif defined(__GNUC__)
|
207
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
208
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
209
|
-
# define BOOST_ASIO_DELETED = delete
|
210
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
211
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
212
|
-
# endif // defined(__GNUC__)
|
213
|
-
# if defined(BOOST_ASIO_MSVC)
|
214
|
-
# if (_MSC_VER >= 1900)
|
215
|
-
# define BOOST_ASIO_DELETED = delete
|
216
|
-
# endif // (_MSC_VER >= 1900)
|
217
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
218
|
-
# if !defined(BOOST_ASIO_DELETED)
|
219
|
-
# define BOOST_ASIO_DELETED
|
220
|
-
# endif // !defined(BOOST_ASIO_DELETED)
|
221
|
-
#endif // !defined(BOOST_ASIO_DELETED)
|
222
|
-
|
223
|
-
// Support constexpr on compilers known to allow it.
|
224
|
-
#if !defined(BOOST_ASIO_HAS_CONSTEXPR)
|
225
|
-
# if !defined(BOOST_ASIO_DISABLE_CONSTEXPR)
|
107
|
+
# define BOOST_ASIO_DELETED = delete
|
108
|
+
# define BOOST_ASIO_HAS_VARIADIC_TEMPLATES 1
|
109
|
+
# define BOOST_ASIO_HAS_CONSTEXPR 1
|
110
|
+
# define BOOST_ASIO_STATIC_CONSTEXPR(type, assignment) \
|
111
|
+
static constexpr type assignment
|
112
|
+
# define BOOST_ASIO_HAS_NOEXCEPT 1
|
113
|
+
# define BOOST_ASIO_NOEXCEPT noexcept(true)
|
114
|
+
# define BOOST_ASIO_NOEXCEPT_OR_NOTHROW noexcept(true)
|
115
|
+
# define BOOST_ASIO_NOEXCEPT_IF(c) noexcept(c)
|
116
|
+
# define BOOST_ASIO_HAS_DECLTYPE 1
|
117
|
+
# define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX(t) auto
|
118
|
+
# define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX2(t0, t1) auto
|
119
|
+
# define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX3(t0, t1, t2) auto
|
120
|
+
# define BOOST_ASIO_AUTO_RETURN_TYPE_SUFFIX(expr) -> decltype expr
|
121
|
+
# define BOOST_ASIO_HAS_ALIAS_TEMPLATES 1
|
122
|
+
# define BOOST_ASIO_HAS_DEFAULT_FUNCTION_TEMPLATE_ARGUMENTS 1
|
123
|
+
# define BOOST_ASIO_HAS_ENUM_CLASS 1
|
124
|
+
# define BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS 1
|
125
|
+
# define BOOST_ASIO_LVALUE_REF_QUAL &
|
126
|
+
# define BOOST_ASIO_RVALUE_REF_QUAL &&
|
127
|
+
# define BOOST_ASIO_HAS_USER_DEFINED_LITERALS 1
|
128
|
+
# define BOOST_ASIO_HAS_ALIGNOF 1
|
129
|
+
# define BOOST_ASIO_ALIGNOF(T) alignof(T)
|
130
|
+
// Standard library support for std::align.
|
131
|
+
#if !defined(BOOST_ASIO_HAS_STD_ALIGN)
|
132
|
+
# if !defined(BOOST_ASIO_DISABLE_STD_ALIGN)
|
226
133
|
# if defined(__clang__)
|
227
|
-
# if
|
228
|
-
# define
|
229
|
-
#
|
134
|
+
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
135
|
+
# define BOOST_ASIO_HAS_STD_ALIGN 1
|
136
|
+
# elif (__cplusplus >= 201103)
|
137
|
+
# define BOOST_ASIO_HAS_STD_ALIGN 1
|
138
|
+
# endif // (__cplusplus >= 201103)
|
230
139
|
# elif defined(__GNUC__)
|
231
|
-
# if (
|
140
|
+
# if (__GNUC__ >= 6)
|
232
141
|
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
233
|
-
# define
|
142
|
+
# define BOOST_ASIO_HAS_STD_ALIGN 1
|
234
143
|
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
235
|
-
# endif // (
|
144
|
+
# endif // (__GNUC__ >= 6)
|
236
145
|
# endif // defined(__GNUC__)
|
237
146
|
# if defined(BOOST_ASIO_MSVC)
|
238
|
-
# if (_MSC_VER >=
|
239
|
-
# define
|
240
|
-
# endif // (_MSC_VER >=
|
147
|
+
# if (_MSC_VER >= 1700)
|
148
|
+
# define BOOST_ASIO_HAS_STD_ALIGN 1
|
149
|
+
# endif // (_MSC_VER >= 1700)
|
241
150
|
# endif // defined(BOOST_ASIO_MSVC)
|
242
|
-
# endif // !defined(
|
243
|
-
#endif // !defined(
|
244
|
-
#
|
245
|
-
#
|
246
|
-
#
|
247
|
-
#
|
248
|
-
#
|
249
|
-
#
|
250
|
-
#
|
251
|
-
#
|
252
|
-
#
|
253
|
-
#
|
254
|
-
|
255
|
-
#
|
256
|
-
#
|
257
|
-
|
258
|
-
#
|
259
|
-
#
|
151
|
+
# endif // !defined(BOOST_ASIO_DISABLE_STD_ALIGN)
|
152
|
+
#endif // !defined(BOOST_ASIO_HAS_STD_ALIGN)
|
153
|
+
# define BOOST_ASIO_HAS_STD_SYSTEM_ERROR 1
|
154
|
+
# define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT noexcept(true)
|
155
|
+
# define BOOST_ASIO_HAS_STD_ARRAY 1
|
156
|
+
# define BOOST_ASIO_HAS_STD_SHARED_PTR 1
|
157
|
+
# define BOOST_ASIO_HAS_STD_ALLOCATOR_ARG 1
|
158
|
+
# define BOOST_ASIO_HAS_STD_ATOMIC 1
|
159
|
+
# define BOOST_ASIO_HAS_STD_CHRONO 1
|
160
|
+
# define BOOST_ASIO_HAS_STD_ADDRESSOF 1
|
161
|
+
# define BOOST_ASIO_HAS_STD_FUNCTION 1
|
162
|
+
# define BOOST_ASIO_HAS_STD_REFERENCE_WRAPPER 1
|
163
|
+
# define BOOST_ASIO_HAS_STD_TYPE_TRAITS 1
|
164
|
+
# define BOOST_ASIO_HAS_NULLPTR 1
|
165
|
+
# define BOOST_ASIO_HAS_CXX11_ALLOCATORS 1
|
166
|
+
# define BOOST_ASIO_HAS_CSTDINT 1
|
167
|
+
# define BOOST_ASIO_HAS_STD_THREAD 1
|
168
|
+
# define BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR 1
|
169
|
+
# define BOOST_ASIO_HAS_STD_CALL_ONCE 1
|
170
|
+
# define BOOST_ASIO_HAS_STD_FUTURE 1
|
171
|
+
# define BOOST_ASIO_HAS_STD_TUPLE 1
|
172
|
+
# define BOOST_ASIO_HAS_STD_IOSTREAM_MOVE 1
|
173
|
+
# define BOOST_ASIO_HAS_STD_EXCEPTION_PTR 1
|
174
|
+
# define BOOST_ASIO_HAS_STD_NESTED_EXCEPTION 1
|
175
|
+
# define BOOST_ASIO_HAS_STD_HASH 1
|
176
|
+
#endif // !defined(BOOST_ASIO_DISABLE_CXX11_MACROS)
|
177
|
+
|
178
|
+
// Support for static constexpr with default initialisation.
|
260
179
|
#if !defined(BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT)
|
261
|
-
# if defined(
|
262
|
-
# if
|
263
|
-
# if (__GNUC__ >= 8)
|
264
|
-
# define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
|
265
|
-
static constexpr const type name{}
|
266
|
-
# else // (__GNUC__ >= 8)
|
267
|
-
# define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
|
268
|
-
static const type name
|
269
|
-
# endif // (__GNUC__ >= 8)
|
270
|
-
# elif defined(BOOST_ASIO_MSVC)
|
271
|
-
# define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
|
272
|
-
static const type name
|
273
|
-
# else // defined(BOOST_ASIO_MSVC)
|
180
|
+
# if defined(__GNUC__)
|
181
|
+
# if (__GNUC__ >= 8)
|
274
182
|
# define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
|
275
183
|
static constexpr const type name{}
|
276
|
-
#
|
277
|
-
#
|
184
|
+
# else // (__GNUC__ >= 8)
|
185
|
+
# define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
|
186
|
+
static const type name
|
187
|
+
# endif // (__GNUC__ >= 8)
|
188
|
+
# elif defined(BOOST_ASIO_MSVC)
|
278
189
|
# define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
|
279
190
|
static const type name
|
280
|
-
#
|
191
|
+
# else // defined(BOOST_ASIO_MSVC)
|
192
|
+
# define BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT(type, name) \
|
193
|
+
static constexpr const type name{}
|
194
|
+
# endif // defined(BOOST_ASIO_MSVC)
|
281
195
|
#endif // !defined(BOOST_ASIO_STATIC_CONSTEXPR_DEFAULT_INIT)
|
282
196
|
|
283
|
-
// Support noexcept on compilers known to allow it.
|
284
|
-
#if !defined(BOOST_ASIO_HAS_NOEXCEPT)
|
285
|
-
# if !defined(BOOST_ASIO_DISABLE_NOEXCEPT)
|
286
|
-
# if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && (BOOST_VERSION >= 105300)
|
287
|
-
# if !defined(BOOST_NO_NOEXCEPT)
|
288
|
-
# define BOOST_ASIO_HAS_NOEXCEPT 1
|
289
|
-
# endif // !defined(BOOST_NO_NOEXCEPT)
|
290
|
-
# define BOOST_ASIO_NOEXCEPT BOOST_NOEXCEPT
|
291
|
-
# define BOOST_ASIO_NOEXCEPT_OR_NOTHROW BOOST_NOEXCEPT_OR_NOTHROW
|
292
|
-
# define BOOST_ASIO_NOEXCEPT_IF(c) BOOST_NOEXCEPT_IF(c)
|
293
|
-
# elif defined(__clang__)
|
294
|
-
# if __has_feature(__cxx_noexcept__)
|
295
|
-
# define BOOST_ASIO_HAS_NOEXCEPT 1
|
296
|
-
# endif // __has_feature(__cxx_noexcept__)
|
297
|
-
# elif defined(__GNUC__)
|
298
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
299
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
300
|
-
# define BOOST_ASIO_HAS_NOEXCEPT 1
|
301
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
302
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
303
|
-
# elif defined(BOOST_ASIO_MSVC)
|
304
|
-
# if (_MSC_VER >= 1900)
|
305
|
-
# define BOOST_ASIO_HAS_NOEXCEPT 1
|
306
|
-
# endif // (_MSC_VER >= 1900)
|
307
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
308
|
-
# endif // !defined(BOOST_ASIO_DISABLE_NOEXCEPT)
|
309
|
-
# if !defined(BOOST_ASIO_NOEXCEPT)
|
310
|
-
# endif // !defined(BOOST_ASIO_NOEXCEPT)
|
311
|
-
# if !defined(BOOST_ASIO_NOEXCEPT_OR_NOTHROW)
|
312
|
-
# endif // !defined(BOOST_ASIO_NOEXCEPT_OR_NOTHROW)
|
313
|
-
#endif // !defined(BOOST_ASIO_HAS_NOEXCEPT)
|
314
|
-
#if !defined(BOOST_ASIO_NOEXCEPT)
|
315
|
-
# if defined(BOOST_ASIO_HAS_NOEXCEPT)
|
316
|
-
# define BOOST_ASIO_NOEXCEPT noexcept(true)
|
317
|
-
# else // defined(BOOST_ASIO_HAS_NOEXCEPT)
|
318
|
-
# define BOOST_ASIO_NOEXCEPT
|
319
|
-
# endif // defined(BOOST_ASIO_HAS_NOEXCEPT)
|
320
|
-
#endif // !defined(BOOST_ASIO_NOEXCEPT)
|
321
|
-
#if !defined(BOOST_ASIO_NOEXCEPT_OR_NOTHROW)
|
322
|
-
# if defined(BOOST_ASIO_HAS_NOEXCEPT)
|
323
|
-
# define BOOST_ASIO_NOEXCEPT_OR_NOTHROW noexcept(true)
|
324
|
-
# else // defined(BOOST_ASIO_HAS_NOEXCEPT)
|
325
|
-
# define BOOST_ASIO_NOEXCEPT_OR_NOTHROW throw()
|
326
|
-
# endif // defined(BOOST_ASIO_HAS_NOEXCEPT)
|
327
|
-
#endif // !defined(BOOST_ASIO_NOEXCEPT_OR_NOTHROW)
|
328
|
-
#if !defined(BOOST_ASIO_NOEXCEPT_IF)
|
329
|
-
# if defined(BOOST_ASIO_HAS_NOEXCEPT)
|
330
|
-
# define BOOST_ASIO_NOEXCEPT_IF(c) noexcept(c)
|
331
|
-
# else // defined(BOOST_ASIO_HAS_NOEXCEPT)
|
332
|
-
# define BOOST_ASIO_NOEXCEPT_IF(c)
|
333
|
-
# endif // defined(BOOST_ASIO_HAS_NOEXCEPT)
|
334
|
-
#endif // !defined(BOOST_ASIO_NOEXCEPT_IF)
|
335
|
-
|
336
197
|
// Support noexcept on function types on compilers known to allow it.
|
337
198
|
#if !defined(BOOST_ASIO_HAS_NOEXCEPT_FUNCTION_TYPE)
|
338
199
|
# if !defined(BOOST_ASIO_DISABLE_NOEXCEPT_FUNCTION_TYPE)
|
@@ -352,61 +213,6 @@
|
|
352
213
|
# endif // !defined(BOOST_ASIO_DISABLE_NOEXCEPT_FUNCTION_TYPE)
|
353
214
|
#endif // !defined(BOOST_ASIO_HAS_NOEXCEPT_FUNCTION_TYPE)
|
354
215
|
|
355
|
-
// Support automatic type deduction on compilers known to support it.
|
356
|
-
#if !defined(BOOST_ASIO_HAS_DECLTYPE)
|
357
|
-
# if !defined(BOOST_ASIO_DISABLE_DECLTYPE)
|
358
|
-
# if defined(__clang__)
|
359
|
-
# if __has_feature(__cxx_decltype__)
|
360
|
-
# define BOOST_ASIO_HAS_DECLTYPE 1
|
361
|
-
# endif // __has_feature(__cxx_decltype__)
|
362
|
-
# elif defined(__GNUC__)
|
363
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
|
364
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
365
|
-
# define BOOST_ASIO_HAS_DECLTYPE 1
|
366
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
367
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
|
368
|
-
# endif // defined(__GNUC__)
|
369
|
-
# if defined(BOOST_ASIO_MSVC)
|
370
|
-
# if (_MSC_VER >= 1800)
|
371
|
-
# define BOOST_ASIO_HAS_DECLTYPE 1
|
372
|
-
# endif // (_MSC_VER >= 1800)
|
373
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
374
|
-
# endif // !defined(BOOST_ASIO_DISABLE_DECLTYPE)
|
375
|
-
#endif // !defined(BOOST_ASIO_HAS_DECLTYPE)
|
376
|
-
#if defined(BOOST_ASIO_HAS_DECLTYPE)
|
377
|
-
# define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX(t) auto
|
378
|
-
# define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX2(t0, t1) auto
|
379
|
-
# define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX3(t0, t1, t2) auto
|
380
|
-
# define BOOST_ASIO_AUTO_RETURN_TYPE_SUFFIX(expr) -> decltype expr
|
381
|
-
#else // defined(BOOST_ASIO_HAS_DECLTYPE)
|
382
|
-
# define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX(t) t
|
383
|
-
# define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX2(t0, t1) t0, t1
|
384
|
-
# define BOOST_ASIO_AUTO_RETURN_TYPE_PREFIX3(t0, t1, t2) t0, t1, t2
|
385
|
-
# define BOOST_ASIO_AUTO_RETURN_TYPE_SUFFIX(expr)
|
386
|
-
#endif // defined(BOOST_ASIO_HAS_DECLTYPE)
|
387
|
-
|
388
|
-
// Support alias templates on compilers known to allow it.
|
389
|
-
#if !defined(BOOST_ASIO_HAS_ALIAS_TEMPLATES)
|
390
|
-
# if !defined(BOOST_ASIO_DISABLE_ALIAS_TEMPLATES)
|
391
|
-
# if defined(__clang__)
|
392
|
-
# if __has_feature(__cxx_alias_templates__)
|
393
|
-
# define BOOST_ASIO_HAS_ALIAS_TEMPLATES 1
|
394
|
-
# endif // __has_feature(__cxx_alias_templates__)
|
395
|
-
# elif defined(__GNUC__)
|
396
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
397
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
398
|
-
# define BOOST_ASIO_HAS_ALIAS_TEMPLATES 1
|
399
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
400
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
401
|
-
# endif // defined(__GNUC__)
|
402
|
-
# if defined(BOOST_ASIO_MSVC)
|
403
|
-
# if (_MSC_VER >= 1900)
|
404
|
-
# define BOOST_ASIO_HAS_ALIAS_TEMPLATES 1
|
405
|
-
# endif // (_MSC_VER >= 1900)
|
406
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
407
|
-
# endif // !defined(BOOST_ASIO_DISABLE_ALIAS_TEMPLATES)
|
408
|
-
#endif // !defined(BOOST_ASIO_HAS_ALIAS_TEMPLATES)
|
409
|
-
|
410
216
|
// Support return type deduction on compilers known to allow it.
|
411
217
|
#if !defined(BOOST_ASIO_HAS_RETURN_TYPE_DEDUCTION)
|
412
218
|
# if !defined(BOOST_ASIO_DISABLE_RETURN_TYPE_DEDUCTION)
|
@@ -428,32 +234,6 @@
|
|
428
234
|
# endif // !defined(BOOST_ASIO_DISABLE_RETURN_TYPE_DEDUCTION)
|
429
235
|
#endif // !defined(BOOST_ASIO_HAS_RETURN_TYPE_DEDUCTION)
|
430
236
|
|
431
|
-
// Support default function template arguments on compilers known to allow it.
|
432
|
-
#if !defined(BOOST_ASIO_HAS_DEFAULT_FUNCTION_TEMPLATE_ARGUMENTS)
|
433
|
-
# if !defined(BOOST_ASIO_DISABLE_DEFAULT_FUNCTION_TEMPLATE_ARGUMENTS)
|
434
|
-
# if (__cplusplus >= 201103)
|
435
|
-
# define BOOST_ASIO_HAS_DEFAULT_FUNCTION_TEMPLATE_ARGUMENTS 1
|
436
|
-
# elif defined(BOOST_ASIO_MSVC)
|
437
|
-
# if (_MSC_VER >= 1900 && _MSVC_LANG >= 201103)
|
438
|
-
# define BOOST_ASIO_HAS_DEFAULT_FUNCTION_TEMPLATE_ARGUMENTS 1
|
439
|
-
# endif // (_MSC_VER >= 1900 && _MSVC_LANG >= 201103)
|
440
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
441
|
-
# endif // !defined(BOOST_ASIO_DISABLE_DEFAULT_FUNCTION_TEMPLATE_ARGUMENTS)
|
442
|
-
#endif // !defined(BOOST_ASIO_HAS_DEFAULT_FUNCTION_TEMPLATE_ARGUMENTS)
|
443
|
-
|
444
|
-
// Support enum classes on compilers known to allow them.
|
445
|
-
#if !defined(BOOST_ASIO_HAS_ENUM_CLASS)
|
446
|
-
# if !defined(BOOST_ASIO_DISABLE_ENUM_CLASS)
|
447
|
-
# if (__cplusplus >= 201103)
|
448
|
-
# define BOOST_ASIO_HAS_ENUM_CLASS 1
|
449
|
-
# elif defined(BOOST_ASIO_MSVC)
|
450
|
-
# if (_MSC_VER >= 1900 && _MSVC_LANG >= 201103)
|
451
|
-
# define BOOST_ASIO_HAS_ENUM_CLASS 1
|
452
|
-
# endif // (_MSC_VER >= 1900 && _MSVC_LANG >= 201103)
|
453
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
454
|
-
# endif // !defined(BOOST_ASIO_DISABLE_ENUM_CLASS)
|
455
|
-
#endif // !defined(BOOST_ASIO_HAS_ENUM_CLASS)
|
456
|
-
|
457
237
|
// Support concepts on compilers known to allow them.
|
458
238
|
#if !defined(BOOST_ASIO_HAS_CONCEPTS)
|
459
239
|
# if !defined(BOOST_ASIO_DISABLE_CONCEPTS)
|
@@ -564,43 +344,6 @@
|
|
564
344
|
# endif // !defined(BOOST_ASIO_DISABLE_WORKING_EXPRESSION_SFINAE)
|
565
345
|
#endif // !defined(BOOST_ASIO_HAS_WORKING_EXPRESSION_SFINAE)
|
566
346
|
|
567
|
-
// Support ref-qualified functions on compilers known to allow it.
|
568
|
-
#if !defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
569
|
-
# if !defined(BOOST_ASIO_DISABLE_REF_QUALIFIED_FUNCTIONS)
|
570
|
-
# if defined(__clang__)
|
571
|
-
# if __has_feature(__cxx_reference_qualified_functions__)
|
572
|
-
# define BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS 1
|
573
|
-
# endif // __has_feature(__cxx_reference_qualified_functions__)
|
574
|
-
# elif defined(__GNUC__)
|
575
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
|
576
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
577
|
-
# define BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS 1
|
578
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
579
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
|
580
|
-
# endif // defined(__GNUC__)
|
581
|
-
# if defined(BOOST_ASIO_MSVC)
|
582
|
-
# if (_MSC_VER >= 1900)
|
583
|
-
# define BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS 1
|
584
|
-
# endif // (_MSC_VER >= 1900)
|
585
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
586
|
-
# endif // !defined(BOOST_ASIO_DISABLE_REF_QUALIFIED_FUNCTIONS)
|
587
|
-
#endif // !defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
588
|
-
#if defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
589
|
-
# if !defined(BOOST_ASIO_LVALUE_REF_QUAL)
|
590
|
-
# define BOOST_ASIO_LVALUE_REF_QUAL &
|
591
|
-
# endif // !defined(BOOST_ASIO_LVALUE_REF_QUAL)
|
592
|
-
# if !defined(BOOST_ASIO_RVALUE_REF_QUAL)
|
593
|
-
# define BOOST_ASIO_RVALUE_REF_QUAL &&
|
594
|
-
# endif // !defined(BOOST_ASIO_RVALUE_REF_QUAL)
|
595
|
-
#else // defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
596
|
-
# if !defined(BOOST_ASIO_LVALUE_REF_QUAL)
|
597
|
-
# define BOOST_ASIO_LVALUE_REF_QUAL
|
598
|
-
# endif // !defined(BOOST_ASIO_LVALUE_REF_QUAL)
|
599
|
-
# if !defined(BOOST_ASIO_RVALUE_REF_QUAL)
|
600
|
-
# define BOOST_ASIO_RVALUE_REF_QUAL
|
601
|
-
# endif // !defined(BOOST_ASIO_RVALUE_REF_QUAL)
|
602
|
-
#endif // defined(BOOST_ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
603
|
-
|
604
347
|
// Support for capturing parameter packs in lambdas.
|
605
348
|
#if !defined(BOOST_ASIO_HAS_VARIADIC_LAMBDA_CAPTURES)
|
606
349
|
# if !defined(BOOST_ASIO_DISABLE_VARIADIC_LAMBDA_CAPTURES)
|
@@ -620,45 +363,18 @@
|
|
620
363
|
# endif // !defined(BOOST_ASIO_DISABLE_VARIADIC_LAMBDA_CAPTURES)
|
621
364
|
#endif // !defined(BOOST_ASIO_HAS_VARIADIC_LAMBDA_CAPTURES)
|
622
365
|
|
623
|
-
//
|
624
|
-
#if
|
625
|
-
#
|
626
|
-
#
|
627
|
-
#
|
628
|
-
# endif // (__cplusplus >= 201103)
|
629
|
-
# endif // !defined(BOOST_ASIO_DISABLE_ALIGNOF)
|
630
|
-
#endif // !defined(BOOST_ASIO_HAS_ALIGNOF)
|
631
|
-
|
632
|
-
#if defined(BOOST_ASIO_HAS_ALIGNOF)
|
633
|
-
# define BOOST_ASIO_ALIGNOF(T) alignof(T)
|
634
|
-
# if defined(__STDCPP_DEFAULT_NEW_ALIGNMENT__)
|
635
|
-
# define BOOST_ASIO_DEFAULT_ALIGN __STDCPP_DEFAULT_NEW_ALIGNMENT__
|
636
|
-
# elif defined(__GNUC__)
|
637
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
|
638
|
-
# define BOOST_ASIO_DEFAULT_ALIGN alignof(std::max_align_t)
|
639
|
-
# else // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
|
640
|
-
# define BOOST_ASIO_DEFAULT_ALIGN alignof(max_align_t)
|
641
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
|
642
|
-
# else // defined(__GNUC__)
|
366
|
+
// Default alignment.
|
367
|
+
#if defined(__STDCPP_DEFAULT_NEW_ALIGNMENT__)
|
368
|
+
# define BOOST_ASIO_DEFAULT_ALIGN __STDCPP_DEFAULT_NEW_ALIGNMENT__
|
369
|
+
#elif defined(__GNUC__)
|
370
|
+
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
|
643
371
|
# define BOOST_ASIO_DEFAULT_ALIGN alignof(std::max_align_t)
|
644
|
-
#
|
645
|
-
#
|
646
|
-
#
|
647
|
-
#
|
648
|
-
#
|
649
|
-
|
650
|
-
// Support for user-defined literals.
|
651
|
-
#if !defined(BOOST_ASIO_HAS_USER_DEFINED_LITERALS)
|
652
|
-
# if !defined(BOOST_ASIO_DISABLE_USER_DEFINED_LITERALS)
|
653
|
-
# if (__cplusplus >= 201103)
|
654
|
-
# define BOOST_ASIO_HAS_USER_DEFINED_LITERALS 1
|
655
|
-
# elif defined(BOOST_ASIO_MSVC)
|
656
|
-
# if (_MSC_VER >= 1900 && _MSVC_LANG >= 201103)
|
657
|
-
# define BOOST_ASIO_HAS_USER_DEFINED_LITERALS 1
|
658
|
-
# endif // (_MSC_VER >= 1900 && _MSVC_LANG >= 201103)
|
659
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
660
|
-
# endif // !defined(BOOST_ASIO_DISABLE_USER_DEFINED_LITERALS)
|
661
|
-
#endif // !defined(BOOST_ASIO_HAS_USER_DEFINED_LITERALS)
|
372
|
+
# else // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
|
373
|
+
# define BOOST_ASIO_DEFAULT_ALIGN alignof(max_align_t)
|
374
|
+
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
|
375
|
+
#else // defined(__GNUC__)
|
376
|
+
# define BOOST_ASIO_DEFAULT_ALIGN alignof(std::max_align_t)
|
377
|
+
#endif // defined(__GNUC__)
|
662
378
|
|
663
379
|
// Standard library support for aligned allocation.
|
664
380
|
#if !defined(BOOST_ASIO_HAS_STD_ALIGNED_ALLOC)
|
@@ -705,215 +421,6 @@
|
|
705
421
|
# endif // !defined(BOOST_ASIO_DISABLE_STD_ALIGNED_ALLOC)
|
706
422
|
#endif // !defined(BOOST_ASIO_HAS_STD_ALIGNED_ALLOC)
|
707
423
|
|
708
|
-
// Standard library support for std::align.
|
709
|
-
#if !defined(BOOST_ASIO_HAS_STD_ALIGN)
|
710
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_ALIGN)
|
711
|
-
# if defined(__clang__)
|
712
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
713
|
-
# define BOOST_ASIO_HAS_STD_ALIGN 1
|
714
|
-
# elif (__cplusplus >= 201103)
|
715
|
-
# define BOOST_ASIO_HAS_STD_ALIGN 1
|
716
|
-
# endif // (__cplusplus >= 201103)
|
717
|
-
# elif defined(__GNUC__)
|
718
|
-
# if (__GNUC__ >= 6)
|
719
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
720
|
-
# define BOOST_ASIO_HAS_STD_ALIGN 1
|
721
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
722
|
-
# endif // (__GNUC__ >= 6)
|
723
|
-
# endif // defined(__GNUC__)
|
724
|
-
# if defined(BOOST_ASIO_MSVC)
|
725
|
-
# if (_MSC_VER >= 1700)
|
726
|
-
# define BOOST_ASIO_HAS_STD_ALIGN 1
|
727
|
-
# endif // (_MSC_VER >= 1700)
|
728
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
729
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_ALIGN)
|
730
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_ALIGN)
|
731
|
-
|
732
|
-
// Standard library support for system errors.
|
733
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_SYSTEM_ERROR)
|
734
|
-
# if defined(__clang__)
|
735
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
736
|
-
# define BOOST_ASIO_HAS_STD_SYSTEM_ERROR 1
|
737
|
-
# elif (__cplusplus >= 201103)
|
738
|
-
# if __has_include(<system_error>)
|
739
|
-
# define BOOST_ASIO_HAS_STD_SYSTEM_ERROR 1
|
740
|
-
# endif // __has_include(<system_error>)
|
741
|
-
# endif // (__cplusplus >= 201103)
|
742
|
-
# elif defined(__GNUC__)
|
743
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
|
744
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
745
|
-
# define BOOST_ASIO_HAS_STD_SYSTEM_ERROR 1
|
746
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
747
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
|
748
|
-
# endif // defined(__GNUC__)
|
749
|
-
# if defined(BOOST_ASIO_MSVC)
|
750
|
-
# if (_MSC_VER >= 1700)
|
751
|
-
# define BOOST_ASIO_HAS_STD_SYSTEM_ERROR 1
|
752
|
-
# endif // (_MSC_VER >= 1700)
|
753
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
754
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_SYSTEM_ERROR)
|
755
|
-
|
756
|
-
// Compliant C++11 compilers put noexcept specifiers on error_category members.
|
757
|
-
#if !defined(BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT)
|
758
|
-
# if defined(BOOST_ASIO_HAS_BOOST_CONFIG) && (BOOST_VERSION >= 105300)
|
759
|
-
# define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT BOOST_NOEXCEPT
|
760
|
-
# elif defined(__clang__)
|
761
|
-
# if __has_feature(__cxx_noexcept__)
|
762
|
-
# define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT noexcept(true)
|
763
|
-
# endif // __has_feature(__cxx_noexcept__)
|
764
|
-
# elif defined(__GNUC__)
|
765
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
766
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
767
|
-
# define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT noexcept(true)
|
768
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
769
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
770
|
-
# elif defined(BOOST_ASIO_MSVC)
|
771
|
-
# if (_MSC_VER >= 1900)
|
772
|
-
# define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT noexcept(true)
|
773
|
-
# endif // (_MSC_VER >= 1900)
|
774
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
775
|
-
# if !defined(BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT)
|
776
|
-
# define BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT
|
777
|
-
# endif // !defined(BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT)
|
778
|
-
#endif // !defined(BOOST_ASIO_ERROR_CATEGORY_NOEXCEPT)
|
779
|
-
|
780
|
-
// Standard library support for arrays.
|
781
|
-
#if !defined(BOOST_ASIO_HAS_STD_ARRAY)
|
782
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_ARRAY)
|
783
|
-
# if defined(__clang__)
|
784
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
785
|
-
# define BOOST_ASIO_HAS_STD_ARRAY 1
|
786
|
-
# elif (__cplusplus >= 201103)
|
787
|
-
# if __has_include(<array>)
|
788
|
-
# define BOOST_ASIO_HAS_STD_ARRAY 1
|
789
|
-
# endif // __has_include(<array>)
|
790
|
-
# endif // (__cplusplus >= 201103)
|
791
|
-
# elif defined(__GNUC__)
|
792
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 4)
|
793
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
794
|
-
# define BOOST_ASIO_HAS_STD_ARRAY 1
|
795
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
796
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 4)
|
797
|
-
# endif // defined(__GNUC__)
|
798
|
-
# if defined(BOOST_ASIO_MSVC)
|
799
|
-
# if (_MSC_VER >= 1600)
|
800
|
-
# define BOOST_ASIO_HAS_STD_ARRAY 1
|
801
|
-
# endif // (_MSC_VER >= 1600)
|
802
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
803
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_ARRAY)
|
804
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_ARRAY)
|
805
|
-
|
806
|
-
// Standard library support for shared_ptr and weak_ptr.
|
807
|
-
#if !defined(BOOST_ASIO_HAS_STD_SHARED_PTR)
|
808
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_SHARED_PTR)
|
809
|
-
# if defined(__clang__)
|
810
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
811
|
-
# define BOOST_ASIO_HAS_STD_SHARED_PTR 1
|
812
|
-
# elif (__cplusplus >= 201103)
|
813
|
-
# define BOOST_ASIO_HAS_STD_SHARED_PTR 1
|
814
|
-
# endif // (__cplusplus >= 201103)
|
815
|
-
# elif defined(__GNUC__)
|
816
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 4)
|
817
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
818
|
-
# define BOOST_ASIO_HAS_STD_SHARED_PTR 1
|
819
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
820
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 4)
|
821
|
-
# endif // defined(__GNUC__)
|
822
|
-
# if defined(BOOST_ASIO_MSVC)
|
823
|
-
# if (_MSC_VER >= 1600)
|
824
|
-
# define BOOST_ASIO_HAS_STD_SHARED_PTR 1
|
825
|
-
# endif // (_MSC_VER >= 1600)
|
826
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
827
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_SHARED_PTR)
|
828
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_SHARED_PTR)
|
829
|
-
|
830
|
-
// Standard library support for allocator_arg_t.
|
831
|
-
#if !defined(BOOST_ASIO_HAS_STD_ALLOCATOR_ARG)
|
832
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_ALLOCATOR_ARG)
|
833
|
-
# if defined(__clang__)
|
834
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
835
|
-
# define BOOST_ASIO_HAS_STD_ALLOCATOR_ARG 1
|
836
|
-
# elif (__cplusplus >= 201103)
|
837
|
-
# define BOOST_ASIO_HAS_STD_ALLOCATOR_ARG 1
|
838
|
-
# endif // (__cplusplus >= 201103)
|
839
|
-
# elif defined(__GNUC__)
|
840
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
|
841
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
842
|
-
# define BOOST_ASIO_HAS_STD_ALLOCATOR_ARG 1
|
843
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
844
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
|
845
|
-
# endif // defined(__GNUC__)
|
846
|
-
# if defined(BOOST_ASIO_MSVC)
|
847
|
-
# if (_MSC_VER >= 1600)
|
848
|
-
# define BOOST_ASIO_HAS_STD_ALLOCATOR_ARG 1
|
849
|
-
# endif // (_MSC_VER >= 1600)
|
850
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
851
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_ALLOCATOR_ARG)
|
852
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_ALLOCATOR_ARG)
|
853
|
-
|
854
|
-
// Standard library support for atomic operations.
|
855
|
-
#if !defined(BOOST_ASIO_HAS_STD_ATOMIC)
|
856
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_ATOMIC)
|
857
|
-
# if defined(__clang__)
|
858
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
859
|
-
# define BOOST_ASIO_HAS_STD_ATOMIC 1
|
860
|
-
# elif (__cplusplus >= 201103)
|
861
|
-
# if __has_include(<atomic>)
|
862
|
-
# define BOOST_ASIO_HAS_STD_ATOMIC 1
|
863
|
-
# endif // __has_include(<atomic>)
|
864
|
-
# elif defined(__apple_build_version__) && defined(_LIBCPP_VERSION)
|
865
|
-
# if (__clang_major__ >= 10)
|
866
|
-
# if __has_include(<atomic>)
|
867
|
-
# define BOOST_ASIO_HAS_STD_ATOMIC 1
|
868
|
-
# endif // __has_include(<atomic>)
|
869
|
-
# endif // (__clang_major__ >= 10)
|
870
|
-
# endif // defined(__apple_build_version__) && defined(_LIBCPP_VERSION)
|
871
|
-
# elif defined(__GNUC__)
|
872
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
873
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
874
|
-
# define BOOST_ASIO_HAS_STD_ATOMIC 1
|
875
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
876
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
877
|
-
# endif // defined(__GNUC__)
|
878
|
-
# if defined(BOOST_ASIO_MSVC)
|
879
|
-
# if (_MSC_VER >= 1700)
|
880
|
-
# define BOOST_ASIO_HAS_STD_ATOMIC 1
|
881
|
-
# endif // (_MSC_VER >= 1700)
|
882
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
883
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_ATOMIC)
|
884
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_ATOMIC)
|
885
|
-
|
886
|
-
// Standard library support for chrono. Some standard libraries (such as the
|
887
|
-
// libstdc++ shipped with gcc 4.6) provide monotonic_clock as per early C++0x
|
888
|
-
// drafts, rather than the eventually standardised name of steady_clock.
|
889
|
-
#if !defined(BOOST_ASIO_HAS_STD_CHRONO)
|
890
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_CHRONO)
|
891
|
-
# if defined(__clang__)
|
892
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
893
|
-
# define BOOST_ASIO_HAS_STD_CHRONO 1
|
894
|
-
# elif (__cplusplus >= 201103)
|
895
|
-
# if __has_include(<chrono>)
|
896
|
-
# define BOOST_ASIO_HAS_STD_CHRONO 1
|
897
|
-
# endif // __has_include(<chrono>)
|
898
|
-
# endif // (__cplusplus >= 201103)
|
899
|
-
# elif defined(__GNUC__)
|
900
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
|
901
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
902
|
-
# define BOOST_ASIO_HAS_STD_CHRONO 1
|
903
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ == 6))
|
904
|
-
# define BOOST_ASIO_HAS_STD_CHRONO_MONOTONIC_CLOCK 1
|
905
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ == 6))
|
906
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
907
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
|
908
|
-
# endif // defined(__GNUC__)
|
909
|
-
# if defined(BOOST_ASIO_MSVC)
|
910
|
-
# if (_MSC_VER >= 1700)
|
911
|
-
# define BOOST_ASIO_HAS_STD_CHRONO 1
|
912
|
-
# endif // (_MSC_VER >= 1700)
|
913
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
914
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_CHRONO)
|
915
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_CHRONO)
|
916
|
-
|
917
424
|
// Boost support for chrono.
|
918
425
|
#if !defined(BOOST_ASIO_HAS_BOOST_CHRONO)
|
919
426
|
# if !defined(BOOST_ASIO_DISABLE_BOOST_CHRONO)
|
@@ -968,304 +475,6 @@
|
|
968
475
|
# endif // !defined(BOOST_ASIO_DISABLE_BOOST_CONTEXT_FIBER)
|
969
476
|
#endif // !defined(BOOST_ASIO_HAS_BOOST_CONTEXT_FIBER)
|
970
477
|
|
971
|
-
// Standard library support for addressof.
|
972
|
-
#if !defined(BOOST_ASIO_HAS_STD_ADDRESSOF)
|
973
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_ADDRESSOF)
|
974
|
-
# if defined(__clang__)
|
975
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
976
|
-
# define BOOST_ASIO_HAS_STD_ADDRESSOF 1
|
977
|
-
# elif (__cplusplus >= 201103)
|
978
|
-
# define BOOST_ASIO_HAS_STD_ADDRESSOF 1
|
979
|
-
# endif // (__cplusplus >= 201103)
|
980
|
-
# elif defined(__GNUC__)
|
981
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
|
982
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
983
|
-
# define BOOST_ASIO_HAS_STD_ADDRESSOF 1
|
984
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
985
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
|
986
|
-
# endif // defined(__GNUC__)
|
987
|
-
# if defined(BOOST_ASIO_MSVC)
|
988
|
-
# if (_MSC_VER >= 1700)
|
989
|
-
# define BOOST_ASIO_HAS_STD_ADDRESSOF 1
|
990
|
-
# endif // (_MSC_VER >= 1700)
|
991
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
992
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_ADDRESSOF)
|
993
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_ADDRESSOF)
|
994
|
-
|
995
|
-
// Standard library support for the function class.
|
996
|
-
#if !defined(BOOST_ASIO_HAS_STD_FUNCTION)
|
997
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_FUNCTION)
|
998
|
-
# if defined(__clang__)
|
999
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
1000
|
-
# define BOOST_ASIO_HAS_STD_FUNCTION 1
|
1001
|
-
# elif (__cplusplus >= 201103)
|
1002
|
-
# define BOOST_ASIO_HAS_STD_FUNCTION 1
|
1003
|
-
# endif // (__cplusplus >= 201103)
|
1004
|
-
# elif defined(__GNUC__)
|
1005
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
|
1006
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1007
|
-
# define BOOST_ASIO_HAS_STD_FUNCTION 1
|
1008
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1009
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
|
1010
|
-
# endif // defined(__GNUC__)
|
1011
|
-
# if defined(BOOST_ASIO_MSVC)
|
1012
|
-
# if (_MSC_VER >= 1700)
|
1013
|
-
# define BOOST_ASIO_HAS_STD_FUNCTION 1
|
1014
|
-
# endif // (_MSC_VER >= 1700)
|
1015
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
1016
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_FUNCTION)
|
1017
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_FUNCTION)
|
1018
|
-
|
1019
|
-
// Standard library support for the reference_wrapper class.
|
1020
|
-
#if !defined(BOOST_ASIO_HAS_STD_REFERENCE_WRAPPER)
|
1021
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_REFERENCE_WRAPPER)
|
1022
|
-
# if defined(__clang__)
|
1023
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
1024
|
-
# define BOOST_ASIO_HAS_STD_REFERENCE_WRAPPER 1
|
1025
|
-
# elif (__cplusplus >= 201103)
|
1026
|
-
# define BOOST_ASIO_HAS_STD_REFERENCE_WRAPPER 1
|
1027
|
-
# endif // (__cplusplus >= 201103)
|
1028
|
-
# elif defined(__GNUC__)
|
1029
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
|
1030
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1031
|
-
# define BOOST_ASIO_HAS_STD_REFERENCE_WRAPPER 1
|
1032
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1033
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
|
1034
|
-
# endif // defined(__GNUC__)
|
1035
|
-
# if defined(BOOST_ASIO_MSVC)
|
1036
|
-
# if (_MSC_VER >= 1700)
|
1037
|
-
# define BOOST_ASIO_HAS_STD_REFERENCE_WRAPPER 1
|
1038
|
-
# endif // (_MSC_VER >= 1700)
|
1039
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
1040
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_REFERENCE_WRAPPER)
|
1041
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_REFERENCE_WRAPPER)
|
1042
|
-
|
1043
|
-
// Standard library support for type traits.
|
1044
|
-
#if !defined(BOOST_ASIO_HAS_STD_TYPE_TRAITS)
|
1045
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_TYPE_TRAITS)
|
1046
|
-
# if defined(__clang__)
|
1047
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
1048
|
-
# define BOOST_ASIO_HAS_STD_TYPE_TRAITS 1
|
1049
|
-
# elif (__cplusplus >= 201103)
|
1050
|
-
# if __has_include(<type_traits>)
|
1051
|
-
# define BOOST_ASIO_HAS_STD_TYPE_TRAITS 1
|
1052
|
-
# endif // __has_include(<type_traits>)
|
1053
|
-
# endif // (__cplusplus >= 201103)
|
1054
|
-
# elif defined(__GNUC__)
|
1055
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
|
1056
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1057
|
-
# define BOOST_ASIO_HAS_STD_TYPE_TRAITS 1
|
1058
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1059
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
|
1060
|
-
# endif // defined(__GNUC__)
|
1061
|
-
# if defined(BOOST_ASIO_MSVC)
|
1062
|
-
# if (_MSC_VER >= 1700)
|
1063
|
-
# define BOOST_ASIO_HAS_STD_TYPE_TRAITS 1
|
1064
|
-
# endif // (_MSC_VER >= 1700)
|
1065
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
1066
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_TYPE_TRAITS)
|
1067
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_TYPE_TRAITS)
|
1068
|
-
|
1069
|
-
// Standard library support for the nullptr_t type.
|
1070
|
-
#if !defined(BOOST_ASIO_HAS_NULLPTR)
|
1071
|
-
# if !defined(BOOST_ASIO_DISABLE_NULLPTR)
|
1072
|
-
# if defined(__clang__)
|
1073
|
-
# if __has_feature(__cxx_nullptr__)
|
1074
|
-
# define BOOST_ASIO_HAS_NULLPTR 1
|
1075
|
-
# endif // __has_feature(__cxx_nullptr__)
|
1076
|
-
# elif defined(__GNUC__)
|
1077
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
|
1078
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1079
|
-
# define BOOST_ASIO_HAS_NULLPTR 1
|
1080
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1081
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
|
1082
|
-
# endif // defined(__GNUC__)
|
1083
|
-
# if defined(BOOST_ASIO_MSVC)
|
1084
|
-
# if (_MSC_VER >= 1700)
|
1085
|
-
# define BOOST_ASIO_HAS_NULLPTR 1
|
1086
|
-
# endif // (_MSC_VER >= 1700)
|
1087
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
1088
|
-
# endif // !defined(BOOST_ASIO_DISABLE_NULLPTR)
|
1089
|
-
#endif // !defined(BOOST_ASIO_HAS_NULLPTR)
|
1090
|
-
|
1091
|
-
// Standard library support for the C++11 allocator additions.
|
1092
|
-
#if !defined(BOOST_ASIO_HAS_CXX11_ALLOCATORS)
|
1093
|
-
# if !defined(BOOST_ASIO_DISABLE_CXX11_ALLOCATORS)
|
1094
|
-
# if defined(__clang__)
|
1095
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
1096
|
-
# define BOOST_ASIO_HAS_CXX11_ALLOCATORS 1
|
1097
|
-
# elif (__cplusplus >= 201103)
|
1098
|
-
# define BOOST_ASIO_HAS_CXX11_ALLOCATORS 1
|
1099
|
-
# endif // (__cplusplus >= 201103)
|
1100
|
-
# elif defined(__GNUC__)
|
1101
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
1102
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1103
|
-
# define BOOST_ASIO_HAS_CXX11_ALLOCATORS 1
|
1104
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1105
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
1106
|
-
# endif // defined(__GNUC__)
|
1107
|
-
# if defined(BOOST_ASIO_MSVC)
|
1108
|
-
# if (_MSC_VER >= 1800)
|
1109
|
-
# define BOOST_ASIO_HAS_CXX11_ALLOCATORS 1
|
1110
|
-
# endif // (_MSC_VER >= 1800)
|
1111
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
1112
|
-
# endif // !defined(BOOST_ASIO_DISABLE_CXX11_ALLOCATORS)
|
1113
|
-
#endif // !defined(BOOST_ASIO_HAS_CXX11_ALLOCATORS)
|
1114
|
-
|
1115
|
-
// Standard library support for the cstdint header.
|
1116
|
-
#if !defined(BOOST_ASIO_HAS_CSTDINT)
|
1117
|
-
# if !defined(BOOST_ASIO_DISABLE_CSTDINT)
|
1118
|
-
# if defined(__clang__)
|
1119
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
1120
|
-
# define BOOST_ASIO_HAS_CSTDINT 1
|
1121
|
-
# elif (__cplusplus >= 201103)
|
1122
|
-
# define BOOST_ASIO_HAS_CSTDINT 1
|
1123
|
-
# endif // (__cplusplus >= 201103)
|
1124
|
-
# elif defined(__GNUC__)
|
1125
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
|
1126
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1127
|
-
# define BOOST_ASIO_HAS_CSTDINT 1
|
1128
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1129
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5)) || (__GNUC__ > 4)
|
1130
|
-
# endif // defined(__GNUC__)
|
1131
|
-
# if defined(BOOST_ASIO_MSVC)
|
1132
|
-
# if (_MSC_VER >= 1700)
|
1133
|
-
# define BOOST_ASIO_HAS_CSTDINT 1
|
1134
|
-
# endif // (_MSC_VER >= 1700)
|
1135
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
1136
|
-
# endif // !defined(BOOST_ASIO_DISABLE_CSTDINT)
|
1137
|
-
#endif // !defined(BOOST_ASIO_HAS_CSTDINT)
|
1138
|
-
|
1139
|
-
// Standard library support for the thread class.
|
1140
|
-
#if !defined(BOOST_ASIO_HAS_STD_THREAD)
|
1141
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_THREAD)
|
1142
|
-
# if defined(__clang__)
|
1143
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
1144
|
-
# define BOOST_ASIO_HAS_STD_THREAD 1
|
1145
|
-
# elif (__cplusplus >= 201103)
|
1146
|
-
# if __has_include(<thread>)
|
1147
|
-
# define BOOST_ASIO_HAS_STD_THREAD 1
|
1148
|
-
# endif // __has_include(<thread>)
|
1149
|
-
# endif // (__cplusplus >= 201103)
|
1150
|
-
# elif defined(__GNUC__)
|
1151
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
1152
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1153
|
-
# define BOOST_ASIO_HAS_STD_THREAD 1
|
1154
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1155
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
1156
|
-
# endif // defined(__GNUC__)
|
1157
|
-
# if defined(BOOST_ASIO_MSVC)
|
1158
|
-
# if (_MSC_VER >= 1700)
|
1159
|
-
# define BOOST_ASIO_HAS_STD_THREAD 1
|
1160
|
-
# endif // (_MSC_VER >= 1700)
|
1161
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
1162
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_THREAD)
|
1163
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_THREAD)
|
1164
|
-
|
1165
|
-
// Standard library support for the mutex and condition variable classes.
|
1166
|
-
#if !defined(BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR)
|
1167
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_MUTEX_AND_CONDVAR)
|
1168
|
-
# if defined(__clang__)
|
1169
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
1170
|
-
# define BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR 1
|
1171
|
-
# elif (__cplusplus >= 201103)
|
1172
|
-
# if __has_include(<mutex>)
|
1173
|
-
# define BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR 1
|
1174
|
-
# endif // __has_include(<mutex>)
|
1175
|
-
# endif // (__cplusplus >= 201103)
|
1176
|
-
# elif defined(__GNUC__)
|
1177
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
1178
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1179
|
-
# define BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR 1
|
1180
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1181
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
1182
|
-
# endif // defined(__GNUC__)
|
1183
|
-
# if defined(BOOST_ASIO_MSVC)
|
1184
|
-
# if (_MSC_VER >= 1700)
|
1185
|
-
# define BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR 1
|
1186
|
-
# endif // (_MSC_VER >= 1700)
|
1187
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
1188
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_MUTEX_AND_CONDVAR)
|
1189
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_MUTEX_AND_CONDVAR)
|
1190
|
-
|
1191
|
-
// Standard library support for the call_once function.
|
1192
|
-
#if !defined(BOOST_ASIO_HAS_STD_CALL_ONCE)
|
1193
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_CALL_ONCE)
|
1194
|
-
# if defined(__clang__)
|
1195
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
1196
|
-
# define BOOST_ASIO_HAS_STD_CALL_ONCE 1
|
1197
|
-
# elif (__cplusplus >= 201103)
|
1198
|
-
# if __has_include(<mutex>)
|
1199
|
-
# define BOOST_ASIO_HAS_STD_CALL_ONCE 1
|
1200
|
-
# endif // __has_include(<mutex>)
|
1201
|
-
# endif // (__cplusplus >= 201103)
|
1202
|
-
# elif defined(__GNUC__)
|
1203
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
1204
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1205
|
-
# define BOOST_ASIO_HAS_STD_CALL_ONCE 1
|
1206
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1207
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
1208
|
-
# endif // defined(__GNUC__)
|
1209
|
-
# if defined(BOOST_ASIO_MSVC)
|
1210
|
-
# if (_MSC_VER >= 1700)
|
1211
|
-
# define BOOST_ASIO_HAS_STD_CALL_ONCE 1
|
1212
|
-
# endif // (_MSC_VER >= 1700)
|
1213
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
1214
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_CALL_ONCE)
|
1215
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_CALL_ONCE)
|
1216
|
-
|
1217
|
-
// Standard library support for futures.
|
1218
|
-
#if !defined(BOOST_ASIO_HAS_STD_FUTURE)
|
1219
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_FUTURE)
|
1220
|
-
# if defined(__clang__)
|
1221
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
1222
|
-
# define BOOST_ASIO_HAS_STD_FUTURE 1
|
1223
|
-
# elif (__cplusplus >= 201103)
|
1224
|
-
# if __has_include(<future>)
|
1225
|
-
# define BOOST_ASIO_HAS_STD_FUTURE 1
|
1226
|
-
# endif // __has_include(<future>)
|
1227
|
-
# endif // (__cplusplus >= 201103)
|
1228
|
-
# elif defined(__GNUC__)
|
1229
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
1230
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1231
|
-
# define BOOST_ASIO_HAS_STD_FUTURE 1
|
1232
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1233
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
1234
|
-
# endif // defined(__GNUC__)
|
1235
|
-
# if defined(BOOST_ASIO_MSVC)
|
1236
|
-
# if (_MSC_VER >= 1700)
|
1237
|
-
# define BOOST_ASIO_HAS_STD_FUTURE 1
|
1238
|
-
# endif // (_MSC_VER >= 1700)
|
1239
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
1240
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_FUTURE)
|
1241
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_FUTURE)
|
1242
|
-
|
1243
|
-
// Standard library support for std::tuple.
|
1244
|
-
#if !defined(BOOST_ASIO_HAS_STD_TUPLE)
|
1245
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_TUPLE)
|
1246
|
-
# if defined(__clang__)
|
1247
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
1248
|
-
# define BOOST_ASIO_HAS_STD_TUPLE 1
|
1249
|
-
# elif (__cplusplus >= 201103)
|
1250
|
-
# if __has_include(<tuple>)
|
1251
|
-
# define BOOST_ASIO_HAS_STD_TUPLE 1
|
1252
|
-
# endif // __has_include(<tuple>)
|
1253
|
-
# endif // (__cplusplus >= 201103)
|
1254
|
-
# elif defined(__GNUC__)
|
1255
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
|
1256
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1257
|
-
# define BOOST_ASIO_HAS_STD_TUPLE 1
|
1258
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1259
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
|
1260
|
-
# endif // defined(__GNUC__)
|
1261
|
-
# if defined(BOOST_ASIO_MSVC)
|
1262
|
-
# if (_MSC_VER >= 1700)
|
1263
|
-
# define BOOST_ASIO_HAS_STD_TUPLE 1
|
1264
|
-
# endif // (_MSC_VER >= 1700)
|
1265
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
1266
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_TUPLE)
|
1267
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_TUPLE)
|
1268
|
-
|
1269
478
|
// Standard library support for std::string_view.
|
1270
479
|
#if !defined(BOOST_ASIO_HAS_STD_STRING_VIEW)
|
1271
480
|
# if !defined(BOOST_ASIO_DISABLE_STD_STRING_VIEW)
|
@@ -1337,27 +546,6 @@
|
|
1337
546
|
# endif // !defined(BOOST_ASIO_DISABLE_STRING_VIEW)
|
1338
547
|
#endif // !defined(BOOST_ASIO_HAS_STRING_VIEW)
|
1339
548
|
|
1340
|
-
// Standard library support for iostream move construction and assignment.
|
1341
|
-
#if !defined(BOOST_ASIO_HAS_STD_IOSTREAM_MOVE)
|
1342
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_IOSTREAM_MOVE)
|
1343
|
-
# if defined(__clang__)
|
1344
|
-
# if (__cplusplus >= 201103)
|
1345
|
-
# define BOOST_ASIO_HAS_STD_IOSTREAM_MOVE 1
|
1346
|
-
# endif // (__cplusplus >= 201103)
|
1347
|
-
# elif defined(__GNUC__)
|
1348
|
-
# if (__GNUC__ > 4)
|
1349
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1350
|
-
# define BOOST_ASIO_HAS_STD_IOSTREAM_MOVE 1
|
1351
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1352
|
-
# endif // (__GNUC__ > 4)
|
1353
|
-
# elif defined(BOOST_ASIO_MSVC)
|
1354
|
-
# if (_MSC_VER >= 1700)
|
1355
|
-
# define BOOST_ASIO_HAS_STD_IOSTREAM_MOVE 1
|
1356
|
-
# endif // (_MSC_VER >= 1700)
|
1357
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
1358
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_IOSTREAM_MOVE)
|
1359
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_IOSTREAM_MOVE)
|
1360
|
-
|
1361
549
|
// Standard library has invoke_result (which supersedes result_of).
|
1362
550
|
#if !defined(BOOST_ASIO_HAS_STD_INVOKE_RESULT)
|
1363
551
|
# if !defined(BOOST_ASIO_DISABLE_STD_INVOKE_RESULT)
|
@@ -1373,54 +561,6 @@
|
|
1373
561
|
# endif // !defined(BOOST_ASIO_DISABLE_STD_INVOKE_RESULT)
|
1374
562
|
#endif // !defined(BOOST_ASIO_HAS_STD_INVOKE_RESULT)
|
1375
563
|
|
1376
|
-
// Standard library support for std::exception_ptr and std::current_exception.
|
1377
|
-
#if !defined(BOOST_ASIO_HAS_STD_EXCEPTION_PTR)
|
1378
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_EXCEPTION_PTR)
|
1379
|
-
# if defined(__clang__)
|
1380
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
1381
|
-
# define BOOST_ASIO_HAS_STD_EXCEPTION_PTR 1
|
1382
|
-
# elif (__cplusplus >= 201103)
|
1383
|
-
# define BOOST_ASIO_HAS_STD_EXCEPTION_PTR 1
|
1384
|
-
# endif // (__cplusplus >= 201103)
|
1385
|
-
# elif defined(__GNUC__)
|
1386
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
1387
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1388
|
-
# define BOOST_ASIO_HAS_STD_EXCEPTION_PTR 1
|
1389
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1390
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
1391
|
-
# endif // defined(__GNUC__)
|
1392
|
-
# if defined(BOOST_ASIO_MSVC)
|
1393
|
-
# if (_MSC_VER >= 1800)
|
1394
|
-
# define BOOST_ASIO_HAS_STD_EXCEPTION_PTR 1
|
1395
|
-
# endif // (_MSC_VER >= 1800)
|
1396
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
1397
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_EXCEPTION_PTR)
|
1398
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_EXCEPTION_PTR)
|
1399
|
-
|
1400
|
-
// Standard library support for std::nested_exception.
|
1401
|
-
#if !defined(BOOST_ASIO_HAS_STD_NESTED_EXCEPTION)
|
1402
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_NESTED_EXCEPTION)
|
1403
|
-
# if defined(__clang__)
|
1404
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
1405
|
-
# define BOOST_ASIO_HAS_STD_NESTED_EXCEPTION 1
|
1406
|
-
# elif (__cplusplus >= 201103)
|
1407
|
-
# define BOOST_ASIO_HAS_STD_NESTED_EXCEPTION 1
|
1408
|
-
# endif // (__cplusplus >= 201103)
|
1409
|
-
# elif defined(__GNUC__)
|
1410
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
1411
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1412
|
-
# define BOOST_ASIO_HAS_STD_NESTED_EXCEPTION 1
|
1413
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
1414
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
1415
|
-
# endif // defined(__GNUC__)
|
1416
|
-
# if defined(BOOST_ASIO_MSVC)
|
1417
|
-
# if (_MSC_VER >= 1900)
|
1418
|
-
# define BOOST_ASIO_HAS_STD_NESTED_EXCEPTION 1
|
1419
|
-
# endif // (_MSC_VER >= 1900)
|
1420
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
1421
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_NESTED_EXCEPTION)
|
1422
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_NESTED_EXCEPTION)
|
1423
|
-
|
1424
564
|
// Standard library support for std::any.
|
1425
565
|
#if !defined(BOOST_ASIO_HAS_STD_ANY)
|
1426
566
|
# if !defined(BOOST_ASIO_DISABLE_STD_ANY)
|
@@ -2243,30 +1383,6 @@
|
|
2243
1383
|
# endif // defined(_POSIX_VERSION)
|
2244
1384
|
#endif // !defined(BOOST_ASIO_HAS_MSG_NOSIGNAL)
|
2245
1385
|
|
2246
|
-
// Standard library support for std::hash.
|
2247
|
-
#if !defined(BOOST_ASIO_HAS_STD_HASH)
|
2248
|
-
# if !defined(BOOST_ASIO_DISABLE_STD_HASH)
|
2249
|
-
# if defined(__clang__)
|
2250
|
-
# if defined(BOOST_ASIO_HAS_CLANG_LIBCXX)
|
2251
|
-
# define BOOST_ASIO_HAS_STD_HASH 1
|
2252
|
-
# elif (__cplusplus >= 201103)
|
2253
|
-
# define BOOST_ASIO_HAS_STD_HASH 1
|
2254
|
-
# endif // (__cplusplus >= 201103)
|
2255
|
-
# elif defined(__GNUC__)
|
2256
|
-
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
2257
|
-
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
2258
|
-
# define BOOST_ASIO_HAS_STD_HASH 1
|
2259
|
-
# endif // (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
2260
|
-
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
2261
|
-
# endif // defined(__GNUC__)
|
2262
|
-
# if defined(BOOST_ASIO_MSVC)
|
2263
|
-
# if (_MSC_VER >= 1700)
|
2264
|
-
# define BOOST_ASIO_HAS_STD_HASH 1
|
2265
|
-
# endif // (_MSC_VER >= 1700)
|
2266
|
-
# endif // defined(BOOST_ASIO_MSVC)
|
2267
|
-
# endif // !defined(BOOST_ASIO_DISABLE_STD_HASH)
|
2268
|
-
#endif // !defined(BOOST_ASIO_HAS_STD_HASH)
|
2269
|
-
|
2270
1386
|
// Standard library support for std::to_address.
|
2271
1387
|
#if !defined(BOOST_ASIO_HAS_STD_TO_ADDRESS)
|
2272
1388
|
# if !defined(BOOST_ASIO_DISABLE_STD_TO_ADDRESS)
|