passenger 6.0.7 → 6.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +29 -0
- data/CONTRIBUTORS +1 -0
- data/README.md +2 -9
- data/build/common_library.rb +4 -4
- data/build/packaging.rb +4 -2
- data/build/support/cxx_dependency_map.rb +1 -0
- data/dev/copy_boost_headers +1 -1
- data/resources/release.txt +1 -0
- data/resources/templates/config/installation_utils/user_support_binaries_dir_not_writable.txt.erb +1 -0
- data/resources/templates/standalone/global.erb +4 -0
- data/src/agent/Core/AdminPanelConnector.h +1 -1
- data/src/agent/Core/ApplicationPool/Group.h +1 -1
- data/src/agent/Core/ApplicationPool/Group/InternalUtils.cpp +2 -2
- data/src/agent/Core/ApplicationPool/Group/OutOfBandWork.cpp +1 -1
- data/src/agent/Core/ApplicationPool/Options.h +2 -2
- data/src/agent/Core/ApplicationPool/Pool.h +1 -1
- data/src/agent/Core/ApplicationPool/Pool/ProcessUtils.cpp +1 -1
- data/src/agent/Core/Config.h +2 -2
- data/src/agent/Core/Controller/Config.h +2 -2
- data/src/agent/Core/SpawningKit/Handshake/BackgroundIOCapturer.h +1 -1
- data/src/agent/Core/SpawningKit/Handshake/Perform.h +1 -1
- data/src/agent/Core/SpawningKit/PipeWatcher.h +1 -1
- data/src/agent/Core/SpawningKit/SmartSpawner.h +1 -1
- data/src/agent/Core/SpawningKit/Spawner.h +1 -0
- data/src/agent/Core/TelemetryCollector.h +1 -1
- data/src/agent/Shared/ApiServerUtils.h +1 -1
- data/src/agent/Watchdog/Config.h +1 -1
- data/src/agent/Watchdog/InstanceDirToucher.cpp +1 -1
- data/src/agent/Watchdog/WatchdogMain.cpp +1 -1
- data/src/cxx_supportlib/BackgroundEventLoop.cpp +1 -1
- data/src/cxx_supportlib/ConfigKit/Schema.h +1 -1
- data/src/cxx_supportlib/ConfigKit/Translator.h +1 -1
- data/src/cxx_supportlib/Constants.h +2 -2
- data/src/cxx_supportlib/FileTools/FileManip.cpp +10 -1
- data/src/cxx_supportlib/FileTools/FileManip.h +16 -0
- data/src/cxx_supportlib/IOTools/BufferedIO.h +1 -1
- data/src/cxx_supportlib/IOTools/MessageIO.h +1 -1
- data/src/cxx_supportlib/SafeLibev.h +1 -1
- data/src/cxx_supportlib/ServerKit/AcceptLoadBalancer.h +1 -1
- data/src/cxx_supportlib/SystemTools/ProcessMetricsCollector.h +1 -1
- data/src/cxx_supportlib/WebSocketCommandReverseServer.h +9 -12
- data/src/cxx_supportlib/oxt/dynamic_thread_group.hpp +5 -1
- data/src/cxx_supportlib/oxt/thread.hpp +1 -1
- data/src/cxx_supportlib/vendor-copy/websocketpp/changelog.md +107 -5
- data/src/cxx_supportlib/vendor-copy/websocketpp/readme.md +2 -2
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/close.hpp +12 -1
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/asio.hpp +13 -3
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/memory.hpp +0 -1
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/thread.hpp +6 -2
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/core.hpp +13 -1
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/connection.hpp +6 -15
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/endpoint.hpp +24 -24
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/extensions/permessage_deflate/disabled.hpp +1 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/extensions/permessage_deflate/enabled.hpp +84 -19
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/frame.hpp +3 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/impl/parser.hpp +4 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/parser.hpp +10 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/impl/connection_impl.hpp +150 -147
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/impl/endpoint_impl.hpp +4 -4
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/base.hpp +1 -1
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/hybi13.hpp +47 -25
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/roles/client_endpoint.hpp +3 -3
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/roles/server_endpoint.hpp +14 -9
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/sha1/sha1.hpp +189 -189
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/connection.hpp +59 -66
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/endpoint.hpp +73 -38
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/security/none.hpp +9 -7
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/security/tls.hpp +12 -22
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/base/endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/debug/connection.hpp +11 -11
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/debug/endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/iostream/connection.hpp +13 -13
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/iostream/endpoint.hpp +3 -3
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/stub/connection.hpp +8 -8
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/uri.hpp +1 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/utilities.hpp +2 -4
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/version.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/compare.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/case_conv.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/classification.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/finder.hpp +15 -15
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/formatter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/trim.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/find_format.hpp +1 -2
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/formatter.hpp +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/iter_find.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/predicate.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/split.hpp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/array.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +47 -17
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_io_executor.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +2 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +37 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +426 -65
- data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +135 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +432 -257
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +178 -113
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_io_object.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +433 -257
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +286 -143
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_serial_port.hpp +315 -96
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_signal_set.hpp +241 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +364 -227
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +976 -461
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_iostream.hpp +21 -44
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_streambuf.hpp +15 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +329 -197
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +221 -115
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +11 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer.hpp +416 -89
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream.hpp +23 -27
- 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 +31 -30
- 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 +23 -27
- 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 +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +473 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/completion_condition.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/compose.hpp +138 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +118 -102
- data/src/cxx_supportlib/vendor-modified/boost/asio/coroutine.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/defer.hpp +33 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detached.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array_fwd.hpp +1 -1
- 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 +20 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_completion_cond.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +145 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/blocking_executor_op.hpp +109 -0
- 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 +107 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffered_stream_storage.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bulk_executor_op.hpp +90 -0
- 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 +1 -1
- 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 +11 -6
- 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 +9 -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 +481 -129
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/consuming_buffers.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstddef.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstdint.hpp +1 -1
- 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 +29 -12
- 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 +25 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_read_op.hpp +36 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_write_op.hpp +36 -16
- 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 +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/eventfd_select_interrupter.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_function.hpp +205 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_op.hpp +1 -1
- 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 +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/future.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_arm_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_hppa_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_sync_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_x86_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/global.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +55 -6
- 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_invoke_helpers.hpp +24 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_tracking.hpp +27 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +378 -35
- 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 +218 -84
- 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 +12 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/handler_tracking.ipp +40 -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 +6 -2
- 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 +11 -6
- 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_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 +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_serial_port_service.ipp +16 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_socket_service_base.ipp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/resolver_service_base.ipp +37 -33
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/scheduler.ipp +87 -4
- 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 +8 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.hpp +1 -1
- 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 +22 -23
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_ops.ipp +674 -283
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_select_interrupter.ipp +15 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +211 -5
- 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 +9 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.ipp +6 -5
- 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 +1 -1
- 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/io_control.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_object_impl.hpp +177 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_buffer_sequence.hpp +65 -16
- 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/local_free_on_block_exit.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/macos_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/non_const_lvalue.hpp +56 -0
- 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 +7 -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 +63 -52
- 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/old_win_sdk_compat.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 +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +14 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_event.hpp +15 -2
- 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_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 +16 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +62 -34
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_null_buffers_op.hpp +15 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_serial_port_service.hpp +15 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_accept_op.hpp +53 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_connect_op.hpp +20 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recv_op.hpp +43 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvfrom_op.hpp +42 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvmsg_op.hpp +26 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_send_op.hpp +48 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_sendto_op.hpp +43 -17
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +82 -80
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +77 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_wait_op.hpp +15 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +4 -2
- 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 +16 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/regex_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +31 -13
- 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 +31 -15
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service_base.hpp +22 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler.hpp +21 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_operation.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 +1 -1
- 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 +11 -7
- 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 +24 -12
- 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 +47 -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 +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_types.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/solaris_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/source_location.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/static_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_event.hpp +13 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_global.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_static_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_thread.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_executor_service.hpp +26 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_service.hpp +5 -2
- 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 +1 -1
- 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 +7 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +67 -5
- 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 +1 -1
- 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 +65 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/variadic_templates.hpp +177 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_handler.hpp +13 -8
- 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 +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +84 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wrapped_handler.hpp +46 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/dispatch.hpp +27 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/error.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/allocator.hpp +251 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +2266 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bad_executor.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking.hpp +1353 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking_adaptation.hpp +1066 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_execute.hpp +394 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_guarantee.hpp +1020 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/connect.hpp +490 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context.hpp +187 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context_as.hpp +203 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_invocable.hpp +154 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_operation.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_receiver.hpp +130 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/bulk_sender.hpp +263 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/submit_receiver.hpp +235 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/void_receiver.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/execute.hpp +270 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/executor.hpp +240 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/bad_executor.ipp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/receiver_invocation_error.ipp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/invocable_archetype.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/mapping.hpp +919 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/occupancy.hpp +180 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/operation_state.hpp +96 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/outstanding_work.hpp +723 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/prefer_only.hpp +329 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver.hpp +282 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver_invocation_error.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/relationship.hpp +722 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/schedule.hpp +294 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/scheduler.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/sender.hpp +313 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_done.hpp +257 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_error.hpp +257 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_value.hpp +490 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/start.hpp +254 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/submit.hpp +454 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution_context.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/executor.hpp +8 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/executor_work_guard.hpp +129 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/basic_endpoint.hpp +2 -2
- 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_alloc_hook.hpp +29 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_continuation_hook.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_invoke_hook.hpp +30 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/high_resolution_timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +438 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +154 -56
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +148 -52
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +300 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/compose.hpp +637 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +299 -243
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/defer.hpp +204 -33
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/detached.hpp +132 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/dispatch.hpp +199 -34
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/error.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.hpp +8 -6
- 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 +16 -101
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.ipp +6 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +14 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.hpp +209 -114
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.ipp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/multiple_exceptions.ipp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/post.hpp +204 -33
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +619 -132
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +194 -90
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +2278 -445
- data/src/cxx_supportlib/vendor-modified/boost/asio/{experimental/impl → impl}/redirect_error.hpp +148 -52
- 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 +59 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.cpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.ipp +25 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_executor.hpp +114 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.hpp +261 -38
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.ipp +73 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +281 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_future.hpp +131 -40
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +562 -132
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +185 -91
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +714 -60
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context_strand.hpp +46 -54
- 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 +35 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4.hpp +32 -26
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_iterator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_range.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6.hpp +41 -36
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_iterator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_range.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/bad_address_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_endpoint.hpp +24 -23
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver.hpp +200 -190
- 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 +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_query.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_results.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/endpoint.hpp +21 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/impl/endpoint.ipp +10 -10
- 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 +23 -18
- 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 +11 -11
- 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 +26 -26
- 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 +1 -1
- 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 +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/multicast.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v4.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v6.hpp +1 -1
- 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 +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/udp.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/unicast.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/v6_only.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_applicable_property.hpp +63 -0
- 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 +10 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/connect_pair.hpp +14 -19
- 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 +7 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +8 -1
- 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 +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/packaged_task.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/placeholders.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +189 -74
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +180 -72
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor.hpp +5 -612
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor_base.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor.hpp +3 -326
- data/src/cxx_supportlib/vendor-modified/boost/asio/post.hpp +29 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +660 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +300 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +398 -57
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +51 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +1460 -423
- data/src/cxx_supportlib/vendor-modified/boost/asio/{experimental/redirect_error.hpp → redirect_error.hpp} +9 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +528 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +314 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port.hpp +3 -736
- 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 +3 -422
- data/src/cxx_supportlib/vendor-modified/boost/asio/socket_base.hpp +26 -26
- data/src/cxx_supportlib/vendor-modified/boost/asio/spawn.hpp +13 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context.hpp +4 -1
- 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 +6 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +6 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +6 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +37 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/openssl_init.ipp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +51 -8
- 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 +5 -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 +6 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +17 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +41 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/verify_callback.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +11 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/error.hpp +21 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/host_name_verification.hpp +92 -0
- 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 +44 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/error.ipp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/host_name_verification.ipp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/rfc2818_verification.ipp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/src.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/rfc2818_verification.hpp +7 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +235 -97
- 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/static_thread_pool.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/steady_timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/strand.hpp +264 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/streambuf.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_context.hpp +16 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +558 -25
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +917 -38
- data/src/cxx_supportlib/vendor-modified/boost/asio/time_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/bulk_execute_free.hpp +116 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/bulk_execute_member.hpp +116 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/connect_free.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/connect_member.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/equality_comparable.hpp +102 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_free.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_member.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_free.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_member.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_free.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_member.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_static_constexpr_member.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_free.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_member.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_free.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_member.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/schedule_free.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/schedule_member.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_done_free.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_done_member.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_error_free.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_error_member.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_value_free.hpp +236 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_value_member.hpp +236 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/start_free.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/start_member.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_query.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require.hpp +125 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require_concept.hpp +125 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/submit_free.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/submit_member.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/buffer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/executor.hpp +2 -2
- 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 +101 -36
- 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 +171 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_future.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/uses_executor.hpp +1 -1
- 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/windows/basic_object_handle.hpp +295 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_overlapped_handle.hpp +363 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +186 -72
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +188 -73
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle.hpp +3 -346
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_handle.hpp +4 -296
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_ptr.hpp +38 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle.hpp +3 -344
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle.hpp +3 -328
- data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +372 -54
- data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +51 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/yield.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/assert/source_location.hpp +93 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic.hpp +178 -11
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_flag.hpp +12 -3
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_ref.hpp +85 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/capabilities.hpp +2 -191
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/addressof.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/aligned_variable.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_flag_impl.hpp +129 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{atomic_template.hpp → atomic_impl.hpp} +327 -429
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_ref_impl.hpp +1126 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_cast.hpp +23 -4
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_fp_cast.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/capabilities.hpp +217 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_aarch32.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_aarch64.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{caps_gcc_alpha.hpp → caps_arch_gcc_alpha.hpp} +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{hwcaps_gcc_arm.hpp → caps_arch_gcc_arm.hpp} +37 -8
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{hwcaps_gcc_ppc.hpp → caps_arch_gcc_ppc.hpp} +19 -6
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{caps_gcc_sparc.hpp → caps_arch_gcc_sparc.hpp} +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{hwcaps_gcc_x86.hpp → caps_arch_gcc_x86.hpp} +22 -6
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{caps_msvc_arm.hpp → caps_arch_msvc_arm.hpp} +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{caps_msvc_x86.hpp → caps_arch_msvc_x86.hpp} +12 -6
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_atomic.hpp +100 -75
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_sync.hpp +0 -7
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/cas_based_exchange.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/classify.hpp +81 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +39 -15
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_operations.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_operations_fwd.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_aarch32.hpp +1121 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_aarch64.hpp +1909 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_gcc_alpha.hpp → core_arch_ops_gcc_alpha.hpp} +280 -289
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_gcc_arm.hpp → core_arch_ops_gcc_arm.hpp} +467 -447
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_gcc_ppc.hpp → core_arch_ops_gcc_ppc.hpp} +75 -94
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_gcc_sparc.hpp → core_arch_ops_gcc_sparc.hpp} +33 -58
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_gcc_x86_dcas.hpp → core_arch_ops_gcc_x86.hpp} +507 -20
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_msvc_arm.hpp → core_arch_ops_msvc_arm.hpp} +58 -54
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_msvc_x86.hpp → core_arch_ops_msvc_x86.hpp} +69 -101
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations_emulated.hpp +195 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations_emulated_fwd.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations_fwd.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_cas_based.hpp → core_ops_cas_based.hpp} +9 -22
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_ops_gcc_atomic.hpp +306 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_gcc_sync.hpp → core_ops_gcc_sync.hpp} +75 -52
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_linux_arm.hpp → core_ops_linux_arm.hpp} +32 -43
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_ops_windows.hpp +201 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{ops_extending_cas_based.hpp → extending_cas_based_arithmetic.hpp} +12 -9
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_operations_fwd.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_ops_emulated.hpp +23 -12
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_ops_generic.hpp +12 -9
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_operations_fwd.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_emulated.hpp +60 -40
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_aarch32.hpp +1060 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_aarch64.hpp +1330 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_arm.hpp +363 -355
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_ppc.hpp +94 -91
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_x86.hpp +232 -102
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_generic.hpp +9 -17
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_msvc_arm.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_msvc_x86.hpp +119 -92
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_operations.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_aarch32.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_aarch64.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_alpha.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_arm.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_ppc.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_sparc.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_x86.hpp +69 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_msvc_arm.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_msvc_x86.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_operations.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_operations_emulated.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_ops_gcc_atomic.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_ops_gcc_sync.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_ops_linux_arm.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_ops_windows.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/footer.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fp_operations_fwd.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fp_ops_emulated.hpp +14 -8
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fp_ops_generic.hpp +6 -3
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/futex.hpp +147 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_arm_asm_common.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_atomic_memory_order_utils.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/header.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/{integral_extend.hpp → integral_conversions.hpp} +8 -5
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/interlocked.hpp +35 -11
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/intptr.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/lock_pool.hpp +151 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/memory_order_utils.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/once_flag.hpp +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_aarch32_common.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_aarch64_common.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_arm_common.hpp +8 -79
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_ppc_common.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_msvc_common.hpp +7 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/pause.hpp +23 -5
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/platform.hpp +64 -27
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/storage_traits.hpp +187 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/alignment_of.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_floating_point.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_trivially_copyable.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_capabilities.hpp +363 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_dragonfly_umtx.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_freebsd_umtx.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_futex.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_windows.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_operations.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_operations_fwd.hpp +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_dragonfly_umtx.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_emulated.hpp +97 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_freebsd_umtx.hpp +119 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_futex.hpp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_generic.hpp +143 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_windows.hpp +150 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/fences.hpp +7 -18
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic.hpp +85 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_flag.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_ref.hpp +85 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind.hpp +20 -1
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind_template.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn.hpp +25 -11
- data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn_cc.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/bind/placeholders.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/bind/storage.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/posix/chrono.hpp +26 -6
- data/src/cxx_supportlib/vendor-modified/boost/chrono/system_clocks.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/circular_buffer.hpp +8 -5
- data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/base.hpp +107 -105
- data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/details.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/space_optimized.hpp +25 -31
- data/src/cxx_supportlib/vendor-modified/boost/concept/assert.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/abi_prefix.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/abi_suffix.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +72 -22
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/borland.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang.hpp +13 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/codegear.hpp +155 -10
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/common_edg.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/cray.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/digitalmars.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc.hpp +21 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc_xml.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/hp_acc.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/intel.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/metrowerks.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/mpw.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/pathscale.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/sunpro_cc.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/vacpp.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/visualc.hpp +15 -7
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp_zos.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/select_compiler_config.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/select_stdlib_config.hpp +13 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +68 -4
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/cygwin.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/vxworks.hpp +63 -74
- data/src/cxx_supportlib/vendor-modified/boost/config/requires_threads.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +10 -4
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcomo.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +9 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/modena.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/msl.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/roguewave.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/sgi.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/stlport.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/vacpp.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/xlcpp_zos.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/user.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/workaround.hpp +15 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +10 -10
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +13 -13
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator_traits.hpp +19 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/container_fwd.hpp +117 -29
- data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +250 -208
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/advanced_insert_int.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/alloc_helpers.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/alloc_lib.h +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/block_list.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/block_slist.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/compare_functors.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/container_or_allocator_rebind.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/container_rebind.hpp +21 -116
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/copy_move_algo.hpp +11 -8
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/dispatch_uses_allocator.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +30 -24
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_container.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterators.hpp +133 -117
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/mpl.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/pair.hpp +83 -18
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/thread_mutex.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/tree.hpp +103 -69
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/value_functors.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/version_type.hpp +3 -12
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/workaround.hpp +6 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_map.hpp +51 -45
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_set.hpp +24 -22
- data/src/cxx_supportlib/vendor-modified/boost/container/list.hpp +83 -77
- data/src/cxx_supportlib/vendor-modified/boost/container/map.hpp +82 -87
- data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +17 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/options.hpp +278 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/flat_set.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/global_resource.hpp +1 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/memory_resource.hpp +30 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/monotonic_buffer_resource.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/resource_adaptor.hpp +90 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/synchronized_pool_resource.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/unsynchronized_pool_resource.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/scoped_allocator.hpp +80 -80
- data/src/cxx_supportlib/vendor-modified/boost/container/set.hpp +63 -67
- data/src/cxx_supportlib/vendor-modified/boost/container/slist.hpp +48 -42
- data/src/cxx_supportlib/vendor-modified/boost/container/small_vector.hpp +150 -105
- data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +174 -155
- data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +157 -105
- data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +54 -53
- data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +15 -15
- data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +207 -207
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/extensions.hpp +0 -51
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/core/addressof.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/core/alloc_construct.hpp +169 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/allocator_access.hpp +633 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/checked_delete.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/core/default_allocator.hpp +148 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/empty_value.hpp +16 -6
- data/src/cxx_supportlib/vendor-modified/boost/core/first_scalar.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test.hpp +157 -50
- data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test_trait.hpp +82 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/no_exceptions_support.hpp +14 -2
- data/src/cxx_supportlib/vendor-modified/boost/core/noinit_adaptor.hpp +87 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/nvp.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/pointer_traits.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/quick_exit.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/ref.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/swap.hpp +6 -3
- data/src/cxx_supportlib/vendor-modified/boost/core/typeinfo.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/core/uncaught_exceptions.hpp +155 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/use_default.hpp +17 -0
- data/src/cxx_supportlib/vendor-modified/boost/cstdint.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/current_function.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/c_time.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/compiler_config.hpp +4 -17
- data/src/cxx_supportlib/vendor-modified/boost/date_time/constrained_value.hpp +19 -11
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date.hpp +23 -23
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_duration.hpp +17 -22
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_duration_types.hpp +44 -49
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_facet.hpp +5 -6
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_generators.hpp +24 -19
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_parsing.hpp +51 -25
- data/src/cxx_supportlib/vendor-modified/boost/date_time/dst_rules.hpp +56 -56
- data/src/cxx_supportlib/vendor-modified/boost/date_time/dst_transition_generators.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/find_match.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/format_date_parser.hpp +98 -98
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_date.hpp +22 -14
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_day.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_duration.hpp +44 -32
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_duration_types.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_month.hpp +51 -23
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_serialize.hpp +29 -27
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_weekday.hpp +43 -9
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_year.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/parsers.hpp +32 -13
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.hpp +15 -17
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.ipp +27 -22
- data/src/cxx_supportlib/vendor-modified/boost/date_time/int_adapter.hpp +57 -37
- data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/local_time_io.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/period.hpp +44 -47
- data/src/cxx_supportlib/vendor-modified/boost/date_time/period_formatter.hpp +34 -31
- data/src/cxx_supportlib/vendor-modified/boost/date_time/period_parser.hpp +27 -28
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/date_duration_operators.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_config.hpp +13 -26
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_duration.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/ptime.hpp +22 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_serialize.hpp +28 -12
- data/src/cxx_supportlib/vendor-modified/boost/date_time/special_values_formatter.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/special_values_parser.hpp +0 -5
- data/src/cxx_supportlib/vendor-modified/boost/date_time/string_parse_tree.hpp +5 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/strings_from_facet.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time.hpp +24 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_duration.hpp +56 -44
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_facet.hpp +8 -11
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_parsing.hpp +3 -8
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_resolution_traits.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_system_counted.hpp +65 -50
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_system_split.hpp +43 -30
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_zone_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_zone_names.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/tz_db_base.hpp +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/wrapping_int.hpp +16 -15
- data/src/cxx_supportlib/vendor-modified/boost/date_time/year_month_day.hpp +7 -5
- data/src/cxx_supportlib/vendor-modified/boost/detail/basic_pointerbuf.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/current_exception_cast.hpp +10 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/clone_current_exception.hpp +10 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/error_info_impl.hpp +12 -7
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/exception_ptr.hpp +63 -8
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/is_output_streamable.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/object_hex_dump.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/shared_ptr.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/type_info.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/diagnostic_information.hpp +15 -6
- data/src/cxx_supportlib/vendor-modified/boost/exception/exception.hpp +19 -57
- data/src/cxx_supportlib/vendor-modified/boost/exception/get_error_info.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/info.hpp +11 -6
- data/src/cxx_supportlib/vendor-modified/boost/exception/to_string.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/to_string_stub.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception_ptr.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/foreach.hpp +13 -6
- data/src/cxx_supportlib/vendor-modified/boost/function/function_base.hpp +4 -12
- data/src/cxx_supportlib/vendor-modified/boost/function/function_template.hpp +22 -4
- data/src/cxx_supportlib/vendor-modified/boost/integer.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor_ct.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor_rt.hpp +30 -28
- data/src/cxx_supportlib/vendor-modified/boost/integer/extended_euclidean.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/integer_log2.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/integer/mod_inverse.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/static_log2.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/integer/static_min_max.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +22 -22
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +22 -22
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/ebo_functor_holder.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/generic_hook.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +18 -9
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hook_traits.hpp +12 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iterator.hpp +10 -10
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/key_nodeptr_comp.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_iterator.hpp +15 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/math.hpp +7 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/mpl.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_iterator.hpp +13 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_iterator.hpp +23 -11
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +6 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +13 -17
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/intrusive_fwd.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/options.hpp +9 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pack_options.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/priority_compare.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +22 -22
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +22 -22
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +22 -22
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +93 -66
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +17 -14
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +67 -60
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/io/ios_state.hpp +361 -315
- data/src/cxx_supportlib/vendor-modified/boost/io_fwd.hpp +45 -49
- data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/config_def.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/facade_iterator_category.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_adaptor.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_facade.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/bad_lexical_cast.hpp +18 -13
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical.hpp +43 -43
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/inf_nan.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/is_character.hpp +5 -5
- 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 +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/widest_char.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/try_lexical_convert.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/c_regex_traits.cpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/cregex.cpp +10 -3
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/instances.cpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/posix_api.cpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex.cpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex_traits_defaults.cpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/static_mutex.cpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/wc_regex_traits.cpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/wide_posix_api.cpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/winstances.cpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/once.cpp +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/once_atomic.cpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/thread.cpp +12 -7
- data/src/cxx_supportlib/vendor-modified/boost/math/policies/policy.hpp +50 -52
- data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/math_fwd.hpp +41 -7
- data/src/cxx_supportlib/vendor-modified/boost/math/tools/config.hpp +23 -3
- data/src/cxx_supportlib/vendor-modified/boost/math/tools/promotion.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/math/tools/user.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/memory_order.hpp +6 -12
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_merge.hpp +35 -26
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_sort.hpp +18 -12
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/adaptive_sort_merge.hpp +103 -318
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge.hpp +437 -10
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge_sort.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/set_difference.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/predicate.hpp +15 -0
- 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_core.hpp +11 -6
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/type_traits.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/unique_ptr_meta_utils.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/iterator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/assert.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/common_name_wknd.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/adl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/arrays.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/bcc.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/bind.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/compiler.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/ctps.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/dtp.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/forwarding.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/integral.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/operators.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/overload_resolution.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/preprocessor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/ttp.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/count_impl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/fold_impl_body.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/has_rebind.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/integral_wrapper.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/lambda_support.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/nested_type_wknd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/size_impl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/static_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/has_xxx.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/mpl/if.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/integral_c.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/lower_bound.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/numeric_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/upper_bound.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/at.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/none.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/converter_policies.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/operators.hpp +31 -24
- data/src/cxx_supportlib/vendor-modified/boost/optional/bad_optional_access.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_trivially_copyable_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/parameter/are_tagged_arguments.hpp +125 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/always_true_predicate.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/arg_list.hpp +1252 -358
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/as_lvalue.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/augment_predicate.hpp +198 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/cast.hpp +7 -136
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/default.hpp +90 -59
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/has_nested_template_fn.hpp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/is_maybe.hpp +42 -16
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/is_placeholder.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/is_tagged_argument.hpp +95 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/lambda_tag.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/maybe.hpp +128 -97
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/name.hpp +93 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/as_parameter_requirements.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/deduce_tag.hpp +217 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/deduced_item.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/insert_tagged.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/is_named_argument.hpp +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/item.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/make_arg_list.hpp +438 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/make_deduced_items.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/make_items.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/make_parameter_spec_items.hpp +244 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/parameter_requirements.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/predicate.hpp +87 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/satisfies.hpp +142 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_deduced.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_keyword_arg.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_keyword_arg_ref.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_template_keyword_arg.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_type.hpp +89 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/unmatched_argument.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/parameter_requirements.hpp +7 -20
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/parenthesized_type.hpp +8 -31
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pp_impl/argument_pack.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pp_impl/match.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pp_impl/unwrap_predicate.hpp +97 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/binary_seq_for_each.hpp +1638 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/binary_seq_for_each_inc.hpp +1796 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/binary_seq_to_args.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/convert_binary_seq.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/flatten.hpp +7 -110
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/for_each.hpp +7 -98
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/for_each_pred.hpp +1029 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/argument_specs.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/arity_range.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/flatten.hpp +143 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/for_each.hpp +152 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/forwarding_overloads.hpp +509 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_cast.hpp +730 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_dispatch_layer.hpp +474 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_dispatch_tuple.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_forward_match.hpp +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_name.hpp +152 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/no_spec_overloads.hpp +331 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/parenthesized_return_type.hpp +122 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/parenthesized_type.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/specification.hpp +109 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/split_args.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/inc_binary_seq.hpp +78 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/is_binary.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/is_nullary.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/no_perfect_forwarding_begin.hpp +165 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/no_perfect_forwarding_end.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/nullptr.hpp +18 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/overloads.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/qualifier.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/seq_enum.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/seq_merge.hpp +1807 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/result_of0.hpp +46 -29
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/set.hpp +94 -42
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/tag.hpp +149 -27
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/tagged_argument.hpp +865 -159
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/tagged_argument_fwd.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/template_keyword.hpp +76 -34
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/unwrap_cv_reference.hpp +159 -76
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/use_default.hpp +17 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/use_default_tag.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/void.hpp +25 -16
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/yesno.hpp +30 -14
- data/src/cxx_supportlib/vendor-modified/boost/parameter/binding.hpp +154 -70
- data/src/cxx_supportlib/vendor-modified/boost/parameter/compose.hpp +210 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/config.hpp +75 -6
- data/src/cxx_supportlib/vendor-modified/boost/parameter/deduced.hpp +132 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/is_argument_pack.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/keyword.hpp +724 -102
- data/src/cxx_supportlib/vendor-modified/boost/parameter/keyword_fwd.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/macros.hpp +205 -72
- data/src/cxx_supportlib/vendor-modified/boost/parameter/match.hpp +37 -44
- data/src/cxx_supportlib/vendor-modified/boost/parameter/name.hpp +100 -126
- data/src/cxx_supportlib/vendor-modified/boost/parameter/nested_keyword.hpp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/optional.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/parameters.hpp +553 -884
- data/src/cxx_supportlib/vendor-modified/boost/parameter/preprocessor.hpp +156 -1016
- data/src/cxx_supportlib/vendor-modified/boost/parameter/preprocessor_no_spec.hpp +74 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/required.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/template_keyword.hpp +87 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/value_type.hpp +152 -70
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture.h +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/alpha.h +17 -16
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/arm.h +86 -32
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/blackfin.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/convex.h +14 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/ia64.h +17 -16
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/m68k.h +28 -27
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/mips.h +21 -20
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/parisc.h +19 -18
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/ppc.h +23 -22
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/ptx.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/pyramid.h +8 -7
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/riscv.h +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/rs6k.h +16 -15
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sparc.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/superh.h +16 -15
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sys370.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sys390.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/x86.h +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/x86/32.h +26 -25
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/x86/64.h +16 -15
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/z.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/borland.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/clang.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/comeau.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/compaq.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/diab.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/digitalmars.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/dignus.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/edg.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/ekopath.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/gcc.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/gcc_xml.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/greenhills.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/hp_acc.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/iar.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/ibm.h +15 -14
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/intel.h +18 -17
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/kai.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/llvm.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/metaware.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/metrowerks.h +14 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/microtec.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/mpw.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/nvcc.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/palm.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/pgi.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/sgi_mipspro.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/sunpro.h +14 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/tendra.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/visualc.h +13 -12
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/watcom.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd.h +95 -46
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/arm.h +21 -19
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/arm/versions.h +16 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/ppc.h +21 -19
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/ppc/versions.h +27 -21
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86.h +39 -37
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86/versions.h +73 -67
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86_amd.h +25 -23
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86_amd/versions.h +24 -19
- data/src/cxx_supportlib/vendor-modified/boost/predef/language/cuda.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/language/objc.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdc.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdcpp.h +39 -32
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/cloudabi.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/gnu.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/uc.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/vms.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/zos.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/cxx.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/dinkumware.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/libcomo.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/modena.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/msl.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/roguewave.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/sgi.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/stdcpp3.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/stlport.h +13 -12
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/vacpp.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/make.h +97 -35
- data/src/cxx_supportlib/vendor-modified/boost/predef/os.h +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/aix.h +14 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/amigaos.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/beos.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd.h +22 -23
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/bsdi.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/dragonfly.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/free.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/net.h +16 -15
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/open.h +59 -58
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/cygwin.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/haiku.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/hpux.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/ios.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/irix.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/linux.h +14 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/macos.h +14 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/os400.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/qnxnto.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/solaris.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/unix.h +24 -22
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/vms.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/windows.h +16 -15
- data/src/cxx_supportlib/vendor-modified/boost/predef/other/endian.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/other/workaround.h +22 -14
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform.h +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/android.h +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/cloudabi.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/ios.h +14 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/mingw.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/mingw32.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/mingw64.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_desktop.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_phone.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_runtime.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_server.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_store.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_system.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_uwp.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/version.h +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/version_number.h +16 -14
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/detail/get_data.hpp +20 -20
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_list.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_seq.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_tuple.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/config/config.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/check_empty.hpp +19 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/detail/is_empty.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/is_empty_variadic.hpp +28 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/va_opt.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/to_array.hpp +16 -16
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/to_tuple.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/for.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/binary_transform.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/is_empty.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/for_each.hpp +27 -27
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/for_each_i.hpp +28 -28
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/replace.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/rest_n.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/detail/is_single_return.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/elem.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/insert.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/pop_back.hpp +16 -16
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/pop_front.hpp +16 -16
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/push_back.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/push_front.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/rem.hpp +10 -10
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/remove.hpp +16 -16
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/replace.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/reverse.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/to_list.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/to_seq.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/detail/has_opt.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/detail/is_single_return.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/has_opt.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/integer_log2.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/random/discrete_distribution.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/range/as_literal.hpp +0 -6
- data/src/cxx_supportlib/vendor-modified/boost/range/begin.hpp +4 -10
- data/src/cxx_supportlib/vendor-modified/boost/range/concepts.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/range/config.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/range/end.hpp +4 -10
- data/src/cxx_supportlib/vendor-modified/boost/range/iterator_range_core.hpp +0 -32
- data/src/cxx_supportlib/vendor-modified/boost/range/rbegin.hpp +0 -13
- data/src/cxx_supportlib/vendor-modified/boost/range/rend.hpp +0 -13
- data/src/cxx_supportlib/vendor-modified/boost/range/size.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/rational.hpp +33 -7
- data/src/cxx_supportlib/vendor-modified/boost/regex/config.hpp +11 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/config/borland.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/pattern_except.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/pending/object_cache.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex.hpp +17 -6
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_creator.hpp +27 -5
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +36 -15
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/cpp_regex_traits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/cregex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/fileiter.hpp +105 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/indexed_bit_flag.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/instances.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/match_flags.hpp +13 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/match_results.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher.hpp +26 -16
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_common.hpp +16 -6
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_non_recursive.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_recursive.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_format.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_iterator.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_token_iterator.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_traits_defaults.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/sub_match.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/u32regex_token_iterator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/w32_regex_traits.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/allocate_shared_array.hpp +92 -388
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/bad_weak_ptr.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_gcc.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_gcc_atomic.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_gcc_x86.hpp +11 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_nt.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_pt.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_spin.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_std_atomic.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_sync.hpp +13 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/local_counted_base.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/local_sp_deleter.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +87 -47
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_convertible.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base.hpp +12 -16
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_aix.hpp +10 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_atomic.hpp +148 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_nt.hpp +25 -16
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_pt.hpp +16 -8
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp +14 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_spin.hpp +10 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp +25 -17
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_sync.hpp +10 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +23 -26
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_has_sync_intrinsics.hpp +69 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_thread_pause.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_thread_sleep.hpp +104 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_typeinfo_.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock.hpp +7 -9
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_gcc_arm.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp +85 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_nt.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_pt.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_std_atomic.hpp +13 -5
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_sync.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/yield_k.hpp +14 -146
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ptr.hpp +47 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_array.hpp +22 -22
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_object.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_array.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_array.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +58 -23
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/weak_ptr.hpp +79 -8
- data/src/cxx_supportlib/vendor-modified/boost/static_assert.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +5 -11
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_interoperability.hpp +57 -16
- data/src/cxx_supportlib/vendor-modified/boost/system/error_code.hpp +32 -16
- data/src/cxx_supportlib/vendor-modified/boost/system/system_error.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/deque_adaptor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/deque_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/detail/sync_deque_base.hpp +9 -21
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/detail/sync_queue_base.hpp +9 -21
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_adaptor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_op_status.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_bounded_queue.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_deque.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_priority_queue.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_queue.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_timed_queue.hpp +80 -14
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/queue.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/config.hpp +11 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/invoke.hpp +16 -17
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/platform_time.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/thread.hpp +4 -11
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/thread.hpp.orig +841 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/basic_thread_pool.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/executor.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/executor_adaptor.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/generic_executor_ref.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/inline_executor.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/loop_executor.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/scheduled_thread_pool.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/scheduler.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/scheduling_adaptor.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/serial_executor.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/serial_executor_cont.hpp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/thread_executor.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/work.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/experimental/parallel/v2/task_region.hpp +6 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/externally_locked.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/future.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/futures/wait_for_any.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/interruption.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/once.hpp.orig +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/poly_lockable.hpp +7 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/poly_shared_lockable.hpp +16 -12
- data/src/cxx_supportlib/vendor-modified/boost/thread/poly_shared_lockable_adapter.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/condition_variable.hpp +18 -24
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/condition_variable_fwd.hpp +6 -13
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/mutex.hpp +11 -37
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/once.hpp +29 -28
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/once_atomic.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/pthread_helpers.hpp +163 -18
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/pthread_mutex_scoped_lock.hpp +1 -69
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/recursive_mutex.hpp +19 -19
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/shared_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/thread_data.hpp +9 -6
- data/src/cxx_supportlib/vendor-modified/boost/thread/tss.hpp +23 -41
- data/src/cxx_supportlib/vendor-modified/boost/thread/user_scheduler.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/v2/shared_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/throw_exception.hpp +138 -59
- data/src/cxx_supportlib/vendor-modified/boost/tuple/detail/tuple_basic.hpp +15 -11
- data/src/cxx_supportlib/vendor-modified/boost/tuple/tuple.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_index.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_index/stl_type_index.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_index/type_index_facade.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/add_pointer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/aligned_storage.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/alignment_of.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/conjunction.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/copy_cv_ref.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/copy_reference.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/config.hpp +25 -4
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/has_binary_operator.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/has_postfix_operator.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/has_prefix_operator.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_cxx_03.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_cxx_11.hpp +102 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_ptr_tester.hpp +415 -255
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_likely_lambda.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp +1345 -1542
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp +143 -28
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/disjunction.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/extent.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_minus.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_minus_assign.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_nothrow_copy.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_plus_assign.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/integral_constant.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/integral_promotion.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/intrinsics.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_array.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_base_and_derived.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_bounded_array.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_complete.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_const.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_constructible.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_convertible.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_default_constructible.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_destructible.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_empty.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_enum.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_fundamental.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_integral.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_lvalue_reference.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_member_pointer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_pointer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_same.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_scoped_enum.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_signed.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_trivially_copyable.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_unbounded_array.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_unscoped_enum.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_unsigned.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_virtual_base_of.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_volatile.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/negation.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/rank.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_all_extents.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_const.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_cv.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_extent.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_volatile.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/type_with_alignment.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/typeof/int_encoding.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/typeof/typeof_impl.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/utility/detail/result_of_iterate.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_ref.hpp +3 -42
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_view.hpp +4 -43
- data/src/cxx_supportlib/vendor-modified/boost/utility/value_init.hpp +29 -67
- data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
- data/src/nginx_module/Configuration.c +3 -3
- data/src/nginx_module/config +2 -0
- data/src/nginx_module/ngx_http_passenger_module.c +2 -2
- data/src/ruby_supportlib/phusion_passenger.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/admin_tools.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/admin_tools/instance_registry.rb +4 -1
- data/src/ruby_supportlib/phusion_passenger/common_library.rb +2 -0
- data/src/ruby_supportlib/phusion_passenger/config/download_agent_command.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/config/download_nginx_engine_command.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/constants.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/loader_shared_helpers.rb +17 -9
- data/src/ruby_supportlib/phusion_passenger/platform_info/apache.rb +1 -3
- data/src/ruby_supportlib/phusion_passenger/platform_info/cxx_portability.rb +3 -0
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command.rb +1 -1
- metadata +302 -70
- data/src/cxx_supportlib/vendor-modified/boost/asio/datagram_socket_service.hpp +0 -468
- data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer_service.hpp +0 -175
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental.hpp +0 -22
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_spawn.hpp +0 -228
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detached.hpp +0 -67
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/co_spawn.hpp +0 -878
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/detached.hpp +0 -93
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_type.hpp +0 -52
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_service.hpp +0 -202
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor_service.hpp +0 -281
- data/src/cxx_supportlib/vendor-modified/boost/asio/raw_socket_service.hpp +0 -468
- data/src/cxx_supportlib/vendor-modified/boost/asio/seq_packet_socket_service.hpp +0 -418
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_service.hpp +0 -251
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set_service.hpp +0 -144
- data/src/cxx_supportlib/vendor-modified/boost/asio/socket_acceptor_service.hpp +0 -374
- data/src/cxx_supportlib/vendor-modified/boost/asio/stream_socket_service.hpp +0 -414
- data/src/cxx_supportlib/vendor-modified/boost/asio/waitable_timer_service.hpp +0 -212
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_handle.hpp +0 -275
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle_service.hpp +0 -185
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle_service.hpp +0 -216
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle_service.hpp +0 -212
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_flag.hpp +0 -71
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_arm.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_ppc.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_x86.hpp +0 -40
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/lockpool.hpp +0 -51
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/operations.hpp +0 -24
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/operations_fwd.hpp +0 -35
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/operations_lockfree.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_emulated.hpp +0 -162
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_atomic.hpp +0 -392
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_x86.hpp +0 -563
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/storage_type.hpp +0 -207
- data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/allocators.hpp +0 -89
- data/src/cxx_supportlib/vendor-modified/boost/detail/atomic_count.hpp +0 -21
- data/src/cxx_supportlib/vendor-modified/boost/detail/endian.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/boost/detail/iterator.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/detail/sp_typeinfo.hpp +0 -36
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/overloads.hpp +0 -88
- data/src/cxx_supportlib/vendor-modified/boost/predef/detail/endian_compat.h +0 -28
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/android.h +0 -45
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_solaris.hpp +0 -59
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_clang.hpp +0 -151
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_cw_x86.hpp +0 -161
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_solaris.hpp +0 -116
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_has_sync.hpp +0 -69
@@ -0,0 +1,1807 @@
|
|
1
|
+
// Copyright Cromwell D. Enage 2017.
|
2
|
+
// Distributed under the Boost Software License, Version 1.0.
|
3
|
+
// (See accompanying file LICENSE_1_0.txt or copy at
|
4
|
+
// http://www.boost.org/LICENSE_1_0.txt)
|
5
|
+
|
6
|
+
#ifndef BOOST_PARAMETER_AUX_PREPROCESSOR_SEQ_MERGE_HPP
|
7
|
+
#define BOOST_PARAMETER_AUX_PREPROCESSOR_SEQ_MERGE_HPP
|
8
|
+
|
9
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_0(seq0, seq1) seq1
|
10
|
+
/**/
|
11
|
+
|
12
|
+
#include <boost/preprocessor/seq/seq.hpp>
|
13
|
+
#include <boost/preprocessor/seq/push_front.hpp>
|
14
|
+
|
15
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_1(seq0, seq1) \
|
16
|
+
BOOST_PP_SEQ_PUSH_FRONT(seq1, BOOST_PP_SEQ_HEAD(seq0))
|
17
|
+
/**/
|
18
|
+
|
19
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_2(seq0, seq1) \
|
20
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
21
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_1(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
22
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
23
|
+
)
|
24
|
+
/**/
|
25
|
+
|
26
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_3(seq0, seq1) \
|
27
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
28
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_2(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
29
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
30
|
+
)
|
31
|
+
/**/
|
32
|
+
|
33
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_4(seq0, seq1) \
|
34
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
35
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_3(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
36
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
37
|
+
)
|
38
|
+
/**/
|
39
|
+
|
40
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_5(seq0, seq1) \
|
41
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
42
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_4(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
43
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
44
|
+
)
|
45
|
+
/**/
|
46
|
+
|
47
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_6(seq0, seq1) \
|
48
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
49
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_5(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
50
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
51
|
+
)
|
52
|
+
/**/
|
53
|
+
|
54
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_7(seq0, seq1) \
|
55
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
56
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_6(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
57
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
58
|
+
)
|
59
|
+
/**/
|
60
|
+
|
61
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_8(seq0, seq1) \
|
62
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
63
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_7(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
64
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
65
|
+
)
|
66
|
+
/**/
|
67
|
+
|
68
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_9(seq0, seq1) \
|
69
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
70
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_8(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
71
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
72
|
+
)
|
73
|
+
/**/
|
74
|
+
|
75
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_10(seq0, seq1) \
|
76
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
77
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_9(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
78
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
79
|
+
)
|
80
|
+
/**/
|
81
|
+
|
82
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_11(seq0, seq1) \
|
83
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
84
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_10(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
85
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
86
|
+
)
|
87
|
+
/**/
|
88
|
+
|
89
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_12(seq0, seq1) \
|
90
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
91
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_11(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
92
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
93
|
+
)
|
94
|
+
/**/
|
95
|
+
|
96
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_13(seq0, seq1) \
|
97
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
98
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_12(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
99
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
100
|
+
)
|
101
|
+
/**/
|
102
|
+
|
103
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_14(seq0, seq1) \
|
104
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
105
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_13(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
106
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
107
|
+
)
|
108
|
+
/**/
|
109
|
+
|
110
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_15(seq0, seq1) \
|
111
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
112
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_14(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
113
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
114
|
+
)
|
115
|
+
/**/
|
116
|
+
|
117
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_16(seq0, seq1) \
|
118
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
119
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_15(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
120
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
121
|
+
)
|
122
|
+
/**/
|
123
|
+
|
124
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_17(seq0, seq1) \
|
125
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
126
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_16(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
127
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
128
|
+
)
|
129
|
+
/**/
|
130
|
+
|
131
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_18(seq0, seq1) \
|
132
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
133
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_17(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
134
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
135
|
+
)
|
136
|
+
/**/
|
137
|
+
|
138
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_19(seq0, seq1) \
|
139
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
140
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_18(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
141
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
142
|
+
)
|
143
|
+
/**/
|
144
|
+
|
145
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_20(seq0, seq1) \
|
146
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
147
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_19(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
148
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
149
|
+
)
|
150
|
+
/**/
|
151
|
+
|
152
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_21(seq0, seq1) \
|
153
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
154
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_20(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
155
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
156
|
+
)
|
157
|
+
/**/
|
158
|
+
|
159
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_22(seq0, seq1) \
|
160
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
161
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_21(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
162
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
163
|
+
)
|
164
|
+
/**/
|
165
|
+
|
166
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_23(seq0, seq1) \
|
167
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
168
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_22(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
169
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
170
|
+
)
|
171
|
+
/**/
|
172
|
+
|
173
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_24(seq0, seq1) \
|
174
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
175
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_23(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
176
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
177
|
+
)
|
178
|
+
/**/
|
179
|
+
|
180
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_25(seq0, seq1) \
|
181
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
182
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_24(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
183
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
184
|
+
)
|
185
|
+
/**/
|
186
|
+
|
187
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_26(seq0, seq1) \
|
188
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
189
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_25(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
190
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
191
|
+
)
|
192
|
+
/**/
|
193
|
+
|
194
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_27(seq0, seq1) \
|
195
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
196
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_26(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
197
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
198
|
+
)
|
199
|
+
/**/
|
200
|
+
|
201
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_28(seq0, seq1) \
|
202
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
203
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_27(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
204
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
205
|
+
)
|
206
|
+
/**/
|
207
|
+
|
208
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_29(seq0, seq1) \
|
209
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
210
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_28(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
211
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
212
|
+
)
|
213
|
+
/**/
|
214
|
+
|
215
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_30(seq0, seq1) \
|
216
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
217
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_29(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
218
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
219
|
+
)
|
220
|
+
/**/
|
221
|
+
|
222
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_31(seq0, seq1) \
|
223
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
224
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_30(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
225
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
226
|
+
)
|
227
|
+
/**/
|
228
|
+
|
229
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_32(seq0, seq1) \
|
230
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
231
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_31(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
232
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
233
|
+
)
|
234
|
+
/**/
|
235
|
+
|
236
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_33(seq0, seq1) \
|
237
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
238
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_32(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
239
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
240
|
+
)
|
241
|
+
/**/
|
242
|
+
|
243
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_34(seq0, seq1) \
|
244
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
245
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_33(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
246
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
247
|
+
)
|
248
|
+
/**/
|
249
|
+
|
250
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_35(seq0, seq1) \
|
251
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
252
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_34(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
253
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
254
|
+
)
|
255
|
+
/**/
|
256
|
+
|
257
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_36(seq0, seq1) \
|
258
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
259
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_35(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
260
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
261
|
+
)
|
262
|
+
/**/
|
263
|
+
|
264
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_37(seq0, seq1) \
|
265
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
266
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_36(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
267
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
268
|
+
)
|
269
|
+
/**/
|
270
|
+
|
271
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_38(seq0, seq1) \
|
272
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
273
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_37(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
274
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
275
|
+
)
|
276
|
+
/**/
|
277
|
+
|
278
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_39(seq0, seq1) \
|
279
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
280
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_38(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
281
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
282
|
+
)
|
283
|
+
/**/
|
284
|
+
|
285
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_40(seq0, seq1) \
|
286
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
287
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_39(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
288
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
289
|
+
)
|
290
|
+
/**/
|
291
|
+
|
292
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_41(seq0, seq1) \
|
293
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
294
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_40(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
295
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
296
|
+
)
|
297
|
+
/**/
|
298
|
+
|
299
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_42(seq0, seq1) \
|
300
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
301
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_41(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
302
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
303
|
+
)
|
304
|
+
/**/
|
305
|
+
|
306
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_43(seq0, seq1) \
|
307
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
308
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_42(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
309
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
310
|
+
)
|
311
|
+
/**/
|
312
|
+
|
313
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_44(seq0, seq1) \
|
314
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
315
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_43(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
316
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
317
|
+
)
|
318
|
+
/**/
|
319
|
+
|
320
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_45(seq0, seq1) \
|
321
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
322
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_44(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
323
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
324
|
+
)
|
325
|
+
/**/
|
326
|
+
|
327
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_46(seq0, seq1) \
|
328
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
329
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_45(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
330
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
331
|
+
)
|
332
|
+
/**/
|
333
|
+
|
334
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_47(seq0, seq1) \
|
335
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
336
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_46(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
337
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
338
|
+
)
|
339
|
+
/**/
|
340
|
+
|
341
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_48(seq0, seq1) \
|
342
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
343
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_47(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
344
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
345
|
+
)
|
346
|
+
/**/
|
347
|
+
|
348
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_49(seq0, seq1) \
|
349
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
350
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_48(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
351
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
352
|
+
)
|
353
|
+
/**/
|
354
|
+
|
355
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_50(seq0, seq1) \
|
356
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
357
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_49(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
358
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
359
|
+
)
|
360
|
+
/**/
|
361
|
+
|
362
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_51(seq0, seq1) \
|
363
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
364
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_50(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
365
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
366
|
+
)
|
367
|
+
/**/
|
368
|
+
|
369
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_52(seq0, seq1) \
|
370
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
371
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_51(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
372
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
373
|
+
)
|
374
|
+
/**/
|
375
|
+
|
376
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_53(seq0, seq1) \
|
377
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
378
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_52(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
379
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
380
|
+
)
|
381
|
+
/**/
|
382
|
+
|
383
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_54(seq0, seq1) \
|
384
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
385
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_53(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
386
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
387
|
+
)
|
388
|
+
/**/
|
389
|
+
|
390
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_55(seq0, seq1) \
|
391
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
392
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_54(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
393
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
394
|
+
)
|
395
|
+
/**/
|
396
|
+
|
397
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_56(seq0, seq1) \
|
398
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
399
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_55(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
400
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
401
|
+
)
|
402
|
+
/**/
|
403
|
+
|
404
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_57(seq0, seq1) \
|
405
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
406
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_56(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
407
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
408
|
+
)
|
409
|
+
/**/
|
410
|
+
|
411
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_58(seq0, seq1) \
|
412
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
413
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_57(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
414
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
415
|
+
)
|
416
|
+
/**/
|
417
|
+
|
418
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_59(seq0, seq1) \
|
419
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
420
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_58(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
421
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
422
|
+
)
|
423
|
+
/**/
|
424
|
+
|
425
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_60(seq0, seq1) \
|
426
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
427
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_59(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
428
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
429
|
+
)
|
430
|
+
/**/
|
431
|
+
|
432
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_61(seq0, seq1) \
|
433
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
434
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_60(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
435
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
436
|
+
)
|
437
|
+
/**/
|
438
|
+
|
439
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_62(seq0, seq1) \
|
440
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
441
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_61(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
442
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
443
|
+
)
|
444
|
+
/**/
|
445
|
+
|
446
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_63(seq0, seq1) \
|
447
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
448
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_62(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
449
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
450
|
+
)
|
451
|
+
/**/
|
452
|
+
|
453
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_64(seq0, seq1) \
|
454
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
455
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_63(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
456
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
457
|
+
)
|
458
|
+
/**/
|
459
|
+
|
460
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_65(seq0, seq1) \
|
461
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
462
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_64(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
463
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
464
|
+
)
|
465
|
+
/**/
|
466
|
+
|
467
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_66(seq0, seq1) \
|
468
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
469
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_65(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
470
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
471
|
+
)
|
472
|
+
/**/
|
473
|
+
|
474
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_67(seq0, seq1) \
|
475
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
476
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_66(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
477
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
478
|
+
)
|
479
|
+
/**/
|
480
|
+
|
481
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_68(seq0, seq1) \
|
482
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
483
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_67(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
484
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
485
|
+
)
|
486
|
+
/**/
|
487
|
+
|
488
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_69(seq0, seq1) \
|
489
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
490
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_68(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
491
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
492
|
+
)
|
493
|
+
/**/
|
494
|
+
|
495
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_70(seq0, seq1) \
|
496
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
497
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_69(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
498
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
499
|
+
)
|
500
|
+
/**/
|
501
|
+
|
502
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_71(seq0, seq1) \
|
503
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
504
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_70(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
505
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
506
|
+
)
|
507
|
+
/**/
|
508
|
+
|
509
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_72(seq0, seq1) \
|
510
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
511
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_71(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
512
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
513
|
+
)
|
514
|
+
/**/
|
515
|
+
|
516
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_73(seq0, seq1) \
|
517
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
518
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_72(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
519
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
520
|
+
)
|
521
|
+
/**/
|
522
|
+
|
523
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_74(seq0, seq1) \
|
524
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
525
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_73(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
526
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
527
|
+
)
|
528
|
+
/**/
|
529
|
+
|
530
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_75(seq0, seq1) \
|
531
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
532
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_74(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
533
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
534
|
+
)
|
535
|
+
/**/
|
536
|
+
|
537
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_76(seq0, seq1) \
|
538
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
539
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_75(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
540
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
541
|
+
)
|
542
|
+
/**/
|
543
|
+
|
544
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_77(seq0, seq1) \
|
545
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
546
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_76(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
547
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
548
|
+
)
|
549
|
+
/**/
|
550
|
+
|
551
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_78(seq0, seq1) \
|
552
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
553
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_77(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
554
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
555
|
+
)
|
556
|
+
/**/
|
557
|
+
|
558
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_79(seq0, seq1) \
|
559
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
560
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_78(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
561
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
562
|
+
)
|
563
|
+
/**/
|
564
|
+
|
565
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_80(seq0, seq1) \
|
566
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
567
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_79(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
568
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
569
|
+
)
|
570
|
+
/**/
|
571
|
+
|
572
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_81(seq0, seq1) \
|
573
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
574
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_80(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
575
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
576
|
+
)
|
577
|
+
/**/
|
578
|
+
|
579
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_82(seq0, seq1) \
|
580
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
581
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_81(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
582
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
583
|
+
)
|
584
|
+
/**/
|
585
|
+
|
586
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_83(seq0, seq1) \
|
587
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
588
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_82(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
589
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
590
|
+
)
|
591
|
+
/**/
|
592
|
+
|
593
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_84(seq0, seq1) \
|
594
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
595
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_83(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
596
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
597
|
+
)
|
598
|
+
/**/
|
599
|
+
|
600
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_85(seq0, seq1) \
|
601
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
602
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_84(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
603
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
604
|
+
)
|
605
|
+
/**/
|
606
|
+
|
607
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_86(seq0, seq1) \
|
608
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
609
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_85(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
610
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
611
|
+
)
|
612
|
+
/**/
|
613
|
+
|
614
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_87(seq0, seq1) \
|
615
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
616
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_86(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
617
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
618
|
+
)
|
619
|
+
/**/
|
620
|
+
|
621
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_88(seq0, seq1) \
|
622
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
623
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_87(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
624
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
625
|
+
)
|
626
|
+
/**/
|
627
|
+
|
628
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_89(seq0, seq1) \
|
629
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
630
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_88(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
631
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
632
|
+
)
|
633
|
+
/**/
|
634
|
+
|
635
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_90(seq0, seq1) \
|
636
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
637
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_89(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
638
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
639
|
+
)
|
640
|
+
/**/
|
641
|
+
|
642
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_91(seq0, seq1) \
|
643
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
644
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_90(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
645
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
646
|
+
)
|
647
|
+
/**/
|
648
|
+
|
649
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_92(seq0, seq1) \
|
650
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
651
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_91(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
652
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
653
|
+
)
|
654
|
+
/**/
|
655
|
+
|
656
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_93(seq0, seq1) \
|
657
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
658
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_92(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
659
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
660
|
+
)
|
661
|
+
/**/
|
662
|
+
|
663
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_94(seq0, seq1) \
|
664
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
665
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_93(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
666
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
667
|
+
)
|
668
|
+
/**/
|
669
|
+
|
670
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_95(seq0, seq1) \
|
671
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
672
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_94(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
673
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
674
|
+
)
|
675
|
+
/**/
|
676
|
+
|
677
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_96(seq0, seq1) \
|
678
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
679
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_95(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
680
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
681
|
+
)
|
682
|
+
/**/
|
683
|
+
|
684
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_97(seq0, seq1) \
|
685
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
686
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_96(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
687
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
688
|
+
)
|
689
|
+
/**/
|
690
|
+
|
691
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_98(seq0, seq1) \
|
692
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
693
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_97(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
694
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
695
|
+
)
|
696
|
+
/**/
|
697
|
+
|
698
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_99(seq0, seq1) \
|
699
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
700
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_98(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
701
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
702
|
+
)
|
703
|
+
/**/
|
704
|
+
|
705
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_100(seq0, seq1) \
|
706
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
707
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_99(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
708
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
709
|
+
)
|
710
|
+
/**/
|
711
|
+
|
712
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_101(seq0, seq1) \
|
713
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
714
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_100(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
715
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
716
|
+
)
|
717
|
+
/**/
|
718
|
+
|
719
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_102(seq0, seq1) \
|
720
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
721
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_101(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
722
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
723
|
+
)
|
724
|
+
/**/
|
725
|
+
|
726
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_103(seq0, seq1) \
|
727
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
728
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_102(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
729
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
730
|
+
)
|
731
|
+
/**/
|
732
|
+
|
733
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_104(seq0, seq1) \
|
734
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
735
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_103(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
736
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
737
|
+
)
|
738
|
+
/**/
|
739
|
+
|
740
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_105(seq0, seq1) \
|
741
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
742
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_104(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
743
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
744
|
+
)
|
745
|
+
/**/
|
746
|
+
|
747
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_106(seq0, seq1) \
|
748
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
749
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_105(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
750
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
751
|
+
)
|
752
|
+
/**/
|
753
|
+
|
754
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_107(seq0, seq1) \
|
755
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
756
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_106(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
757
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
758
|
+
)
|
759
|
+
/**/
|
760
|
+
|
761
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_108(seq0, seq1) \
|
762
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
763
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_107(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
764
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
765
|
+
)
|
766
|
+
/**/
|
767
|
+
|
768
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_109(seq0, seq1) \
|
769
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
770
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_108(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
771
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
772
|
+
)
|
773
|
+
/**/
|
774
|
+
|
775
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_110(seq0, seq1) \
|
776
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
777
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_109(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
778
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
779
|
+
)
|
780
|
+
/**/
|
781
|
+
|
782
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_111(seq0, seq1) \
|
783
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
784
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_110(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
785
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
786
|
+
)
|
787
|
+
/**/
|
788
|
+
|
789
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_112(seq0, seq1) \
|
790
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
791
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_111(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
792
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
793
|
+
)
|
794
|
+
/**/
|
795
|
+
|
796
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_113(seq0, seq1) \
|
797
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
798
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_112(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
799
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
800
|
+
)
|
801
|
+
/**/
|
802
|
+
|
803
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_114(seq0, seq1) \
|
804
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
805
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_113(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
806
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
807
|
+
)
|
808
|
+
/**/
|
809
|
+
|
810
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_115(seq0, seq1) \
|
811
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
812
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_114(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
813
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
814
|
+
)
|
815
|
+
/**/
|
816
|
+
|
817
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_116(seq0, seq1) \
|
818
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
819
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_115(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
820
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
821
|
+
)
|
822
|
+
/**/
|
823
|
+
|
824
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_117(seq0, seq1) \
|
825
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
826
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_116(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
827
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
828
|
+
)
|
829
|
+
/**/
|
830
|
+
|
831
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_118(seq0, seq1) \
|
832
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
833
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_117(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
834
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
835
|
+
)
|
836
|
+
/**/
|
837
|
+
|
838
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_119(seq0, seq1) \
|
839
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
840
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_118(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
841
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
842
|
+
)
|
843
|
+
/**/
|
844
|
+
|
845
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_120(seq0, seq1) \
|
846
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
847
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_119(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
848
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
849
|
+
)
|
850
|
+
/**/
|
851
|
+
|
852
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_121(seq0, seq1) \
|
853
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
854
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_120(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
855
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
856
|
+
)
|
857
|
+
/**/
|
858
|
+
|
859
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_122(seq0, seq1) \
|
860
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
861
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_121(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
862
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
863
|
+
)
|
864
|
+
/**/
|
865
|
+
|
866
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_123(seq0, seq1) \
|
867
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
868
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_122(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
869
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
870
|
+
)
|
871
|
+
/**/
|
872
|
+
|
873
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_124(seq0, seq1) \
|
874
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
875
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_123(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
876
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
877
|
+
)
|
878
|
+
/**/
|
879
|
+
|
880
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_125(seq0, seq1) \
|
881
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
882
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_124(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
883
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
884
|
+
)
|
885
|
+
/**/
|
886
|
+
|
887
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_126(seq0, seq1) \
|
888
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
889
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_125(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
890
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
891
|
+
)
|
892
|
+
/**/
|
893
|
+
|
894
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_127(seq0, seq1) \
|
895
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
896
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_126(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
897
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
898
|
+
)
|
899
|
+
/**/
|
900
|
+
|
901
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_128(seq0, seq1) \
|
902
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
903
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_127(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
904
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
905
|
+
)
|
906
|
+
/**/
|
907
|
+
|
908
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_129(seq0, seq1) \
|
909
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
910
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_128(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
911
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
912
|
+
)
|
913
|
+
/**/
|
914
|
+
|
915
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_130(seq0, seq1) \
|
916
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
917
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_129(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
918
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
919
|
+
)
|
920
|
+
/**/
|
921
|
+
|
922
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_131(seq0, seq1) \
|
923
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
924
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_130(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
925
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
926
|
+
)
|
927
|
+
/**/
|
928
|
+
|
929
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_132(seq0, seq1) \
|
930
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
931
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_131(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
932
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
933
|
+
)
|
934
|
+
/**/
|
935
|
+
|
936
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_133(seq0, seq1) \
|
937
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
938
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_132(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
939
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
940
|
+
)
|
941
|
+
/**/
|
942
|
+
|
943
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_134(seq0, seq1) \
|
944
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
945
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_133(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
946
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
947
|
+
)
|
948
|
+
/**/
|
949
|
+
|
950
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_135(seq0, seq1) \
|
951
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
952
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_134(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
953
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
954
|
+
)
|
955
|
+
/**/
|
956
|
+
|
957
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_136(seq0, seq1) \
|
958
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
959
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_135(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
960
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
961
|
+
)
|
962
|
+
/**/
|
963
|
+
|
964
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_137(seq0, seq1) \
|
965
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
966
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_136(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
967
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
968
|
+
)
|
969
|
+
/**/
|
970
|
+
|
971
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_138(seq0, seq1) \
|
972
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
973
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_137(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
974
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
975
|
+
)
|
976
|
+
/**/
|
977
|
+
|
978
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_139(seq0, seq1) \
|
979
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
980
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_138(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
981
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
982
|
+
)
|
983
|
+
/**/
|
984
|
+
|
985
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_140(seq0, seq1) \
|
986
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
987
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_139(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
988
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
989
|
+
)
|
990
|
+
/**/
|
991
|
+
|
992
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_141(seq0, seq1) \
|
993
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
994
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_140(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
995
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
996
|
+
)
|
997
|
+
/**/
|
998
|
+
|
999
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_142(seq0, seq1) \
|
1000
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1001
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_141(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1002
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1003
|
+
)
|
1004
|
+
/**/
|
1005
|
+
|
1006
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_143(seq0, seq1) \
|
1007
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1008
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_142(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1009
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1010
|
+
)
|
1011
|
+
/**/
|
1012
|
+
|
1013
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_144(seq0, seq1) \
|
1014
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1015
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_143(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1016
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1017
|
+
)
|
1018
|
+
/**/
|
1019
|
+
|
1020
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_145(seq0, seq1) \
|
1021
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1022
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_144(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1023
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1024
|
+
)
|
1025
|
+
/**/
|
1026
|
+
|
1027
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_146(seq0, seq1) \
|
1028
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1029
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_145(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1030
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1031
|
+
)
|
1032
|
+
/**/
|
1033
|
+
|
1034
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_147(seq0, seq1) \
|
1035
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1036
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_146(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1037
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1038
|
+
)
|
1039
|
+
/**/
|
1040
|
+
|
1041
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_148(seq0, seq1) \
|
1042
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1043
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_147(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1044
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1045
|
+
)
|
1046
|
+
/**/
|
1047
|
+
|
1048
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_149(seq0, seq1) \
|
1049
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1050
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_148(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1051
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1052
|
+
)
|
1053
|
+
/**/
|
1054
|
+
|
1055
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_150(seq0, seq1) \
|
1056
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1057
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_149(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1058
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1059
|
+
)
|
1060
|
+
/**/
|
1061
|
+
|
1062
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_151(seq0, seq1) \
|
1063
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1064
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_150(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1065
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1066
|
+
)
|
1067
|
+
/**/
|
1068
|
+
|
1069
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_152(seq0, seq1) \
|
1070
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1071
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_151(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1072
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1073
|
+
)
|
1074
|
+
/**/
|
1075
|
+
|
1076
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_153(seq0, seq1) \
|
1077
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1078
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_152(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1079
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1080
|
+
)
|
1081
|
+
/**/
|
1082
|
+
|
1083
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_154(seq0, seq1) \
|
1084
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1085
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_153(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1086
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1087
|
+
)
|
1088
|
+
/**/
|
1089
|
+
|
1090
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_155(seq0, seq1) \
|
1091
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1092
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_154(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1093
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1094
|
+
)
|
1095
|
+
/**/
|
1096
|
+
|
1097
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_156(seq0, seq1) \
|
1098
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1099
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_155(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1100
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1101
|
+
)
|
1102
|
+
/**/
|
1103
|
+
|
1104
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_157(seq0, seq1) \
|
1105
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1106
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_156(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1107
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1108
|
+
)
|
1109
|
+
/**/
|
1110
|
+
|
1111
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_158(seq0, seq1) \
|
1112
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1113
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_157(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1114
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1115
|
+
)
|
1116
|
+
/**/
|
1117
|
+
|
1118
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_159(seq0, seq1) \
|
1119
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1120
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_158(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1121
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1122
|
+
)
|
1123
|
+
/**/
|
1124
|
+
|
1125
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_160(seq0, seq1) \
|
1126
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1127
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_159(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1128
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1129
|
+
)
|
1130
|
+
/**/
|
1131
|
+
|
1132
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_161(seq0, seq1) \
|
1133
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1134
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_160(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1135
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1136
|
+
)
|
1137
|
+
/**/
|
1138
|
+
|
1139
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_162(seq0, seq1) \
|
1140
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1141
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_161(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1142
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1143
|
+
)
|
1144
|
+
/**/
|
1145
|
+
|
1146
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_163(seq0, seq1) \
|
1147
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1148
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_162(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1149
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1150
|
+
)
|
1151
|
+
/**/
|
1152
|
+
|
1153
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_164(seq0, seq1) \
|
1154
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1155
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_163(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1156
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1157
|
+
)
|
1158
|
+
/**/
|
1159
|
+
|
1160
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_165(seq0, seq1) \
|
1161
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1162
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_164(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1163
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1164
|
+
)
|
1165
|
+
/**/
|
1166
|
+
|
1167
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_166(seq0, seq1) \
|
1168
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1169
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_165(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1170
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1171
|
+
)
|
1172
|
+
/**/
|
1173
|
+
|
1174
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_167(seq0, seq1) \
|
1175
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1176
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_166(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1177
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1178
|
+
)
|
1179
|
+
/**/
|
1180
|
+
|
1181
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_168(seq0, seq1) \
|
1182
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1183
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_167(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1184
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1185
|
+
)
|
1186
|
+
/**/
|
1187
|
+
|
1188
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_169(seq0, seq1) \
|
1189
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1190
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_168(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1191
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1192
|
+
)
|
1193
|
+
/**/
|
1194
|
+
|
1195
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_170(seq0, seq1) \
|
1196
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1197
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_169(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1198
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1199
|
+
)
|
1200
|
+
/**/
|
1201
|
+
|
1202
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_171(seq0, seq1) \
|
1203
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1204
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_170(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1205
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1206
|
+
)
|
1207
|
+
/**/
|
1208
|
+
|
1209
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_172(seq0, seq1) \
|
1210
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1211
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_171(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1212
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1213
|
+
)
|
1214
|
+
/**/
|
1215
|
+
|
1216
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_173(seq0, seq1) \
|
1217
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1218
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_172(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1219
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1220
|
+
)
|
1221
|
+
/**/
|
1222
|
+
|
1223
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_174(seq0, seq1) \
|
1224
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1225
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_173(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1226
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1227
|
+
)
|
1228
|
+
/**/
|
1229
|
+
|
1230
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_175(seq0, seq1) \
|
1231
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1232
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_174(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1233
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1234
|
+
)
|
1235
|
+
/**/
|
1236
|
+
|
1237
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_176(seq0, seq1) \
|
1238
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1239
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_175(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1240
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1241
|
+
)
|
1242
|
+
/**/
|
1243
|
+
|
1244
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_177(seq0, seq1) \
|
1245
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1246
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_176(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1247
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1248
|
+
)
|
1249
|
+
/**/
|
1250
|
+
|
1251
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_178(seq0, seq1) \
|
1252
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1253
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_177(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1254
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1255
|
+
)
|
1256
|
+
/**/
|
1257
|
+
|
1258
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_179(seq0, seq1) \
|
1259
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1260
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_178(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1261
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1262
|
+
)
|
1263
|
+
/**/
|
1264
|
+
|
1265
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_180(seq0, seq1) \
|
1266
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1267
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_179(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1268
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1269
|
+
)
|
1270
|
+
/**/
|
1271
|
+
|
1272
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_181(seq0, seq1) \
|
1273
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1274
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_180(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1275
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1276
|
+
)
|
1277
|
+
/**/
|
1278
|
+
|
1279
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_182(seq0, seq1) \
|
1280
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1281
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_181(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1282
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1283
|
+
)
|
1284
|
+
/**/
|
1285
|
+
|
1286
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_183(seq0, seq1) \
|
1287
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1288
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_182(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1289
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1290
|
+
)
|
1291
|
+
/**/
|
1292
|
+
|
1293
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_184(seq0, seq1) \
|
1294
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1295
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_183(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1296
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1297
|
+
)
|
1298
|
+
/**/
|
1299
|
+
|
1300
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_185(seq0, seq1) \
|
1301
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1302
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_184(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1303
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1304
|
+
)
|
1305
|
+
/**/
|
1306
|
+
|
1307
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_186(seq0, seq1) \
|
1308
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1309
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_185(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1310
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1311
|
+
)
|
1312
|
+
/**/
|
1313
|
+
|
1314
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_187(seq0, seq1) \
|
1315
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1316
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_186(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1317
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1318
|
+
)
|
1319
|
+
/**/
|
1320
|
+
|
1321
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_188(seq0, seq1) \
|
1322
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1323
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_187(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1324
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1325
|
+
)
|
1326
|
+
/**/
|
1327
|
+
|
1328
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_189(seq0, seq1) \
|
1329
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1330
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_188(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1331
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1332
|
+
)
|
1333
|
+
/**/
|
1334
|
+
|
1335
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_190(seq0, seq1) \
|
1336
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1337
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_189(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1338
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1339
|
+
)
|
1340
|
+
/**/
|
1341
|
+
|
1342
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_191(seq0, seq1) \
|
1343
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1344
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_190(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1345
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1346
|
+
)
|
1347
|
+
/**/
|
1348
|
+
|
1349
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_192(seq0, seq1) \
|
1350
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1351
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_191(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1352
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1353
|
+
)
|
1354
|
+
/**/
|
1355
|
+
|
1356
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_193(seq0, seq1) \
|
1357
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1358
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_192(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1359
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1360
|
+
)
|
1361
|
+
/**/
|
1362
|
+
|
1363
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_194(seq0, seq1) \
|
1364
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1365
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_193(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1366
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1367
|
+
)
|
1368
|
+
/**/
|
1369
|
+
|
1370
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_195(seq0, seq1) \
|
1371
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1372
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_194(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1373
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1374
|
+
)
|
1375
|
+
/**/
|
1376
|
+
|
1377
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_196(seq0, seq1) \
|
1378
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1379
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_195(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1380
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1381
|
+
)
|
1382
|
+
/**/
|
1383
|
+
|
1384
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_197(seq0, seq1) \
|
1385
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1386
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_196(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1387
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1388
|
+
)
|
1389
|
+
/**/
|
1390
|
+
|
1391
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_198(seq0, seq1) \
|
1392
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1393
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_197(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1394
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1395
|
+
)
|
1396
|
+
/**/
|
1397
|
+
|
1398
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_199(seq0, seq1) \
|
1399
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1400
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_198(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1401
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1402
|
+
)
|
1403
|
+
/**/
|
1404
|
+
|
1405
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_200(seq0, seq1) \
|
1406
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1407
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_199(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1408
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1409
|
+
)
|
1410
|
+
/**/
|
1411
|
+
|
1412
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_201(seq0, seq1) \
|
1413
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1414
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_200(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1415
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1416
|
+
)
|
1417
|
+
/**/
|
1418
|
+
|
1419
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_202(seq0, seq1) \
|
1420
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1421
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_201(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1422
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1423
|
+
)
|
1424
|
+
/**/
|
1425
|
+
|
1426
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_203(seq0, seq1) \
|
1427
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1428
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_202(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1429
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1430
|
+
)
|
1431
|
+
/**/
|
1432
|
+
|
1433
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_204(seq0, seq1) \
|
1434
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1435
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_203(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1436
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1437
|
+
)
|
1438
|
+
/**/
|
1439
|
+
|
1440
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_205(seq0, seq1) \
|
1441
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1442
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_204(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1443
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1444
|
+
)
|
1445
|
+
/**/
|
1446
|
+
|
1447
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_206(seq0, seq1) \
|
1448
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1449
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_205(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1450
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1451
|
+
)
|
1452
|
+
/**/
|
1453
|
+
|
1454
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_207(seq0, seq1) \
|
1455
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1456
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_206(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1457
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1458
|
+
)
|
1459
|
+
/**/
|
1460
|
+
|
1461
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_208(seq0, seq1) \
|
1462
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1463
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_207(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1464
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1465
|
+
)
|
1466
|
+
/**/
|
1467
|
+
|
1468
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_209(seq0, seq1) \
|
1469
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1470
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_208(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1471
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1472
|
+
)
|
1473
|
+
/**/
|
1474
|
+
|
1475
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_210(seq0, seq1) \
|
1476
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1477
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_209(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1478
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1479
|
+
)
|
1480
|
+
/**/
|
1481
|
+
|
1482
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_211(seq0, seq1) \
|
1483
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1484
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_210(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1485
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1486
|
+
)
|
1487
|
+
/**/
|
1488
|
+
|
1489
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_212(seq0, seq1) \
|
1490
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1491
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_211(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1492
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1493
|
+
)
|
1494
|
+
/**/
|
1495
|
+
|
1496
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_213(seq0, seq1) \
|
1497
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1498
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_212(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1499
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1500
|
+
)
|
1501
|
+
/**/
|
1502
|
+
|
1503
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_214(seq0, seq1) \
|
1504
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1505
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_213(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1506
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1507
|
+
)
|
1508
|
+
/**/
|
1509
|
+
|
1510
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_215(seq0, seq1) \
|
1511
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1512
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_214(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1513
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1514
|
+
)
|
1515
|
+
/**/
|
1516
|
+
|
1517
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_216(seq0, seq1) \
|
1518
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1519
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_215(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1520
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1521
|
+
)
|
1522
|
+
/**/
|
1523
|
+
|
1524
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_217(seq0, seq1) \
|
1525
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1526
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_216(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1527
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1528
|
+
)
|
1529
|
+
/**/
|
1530
|
+
|
1531
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_218(seq0, seq1) \
|
1532
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1533
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_217(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1534
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1535
|
+
)
|
1536
|
+
/**/
|
1537
|
+
|
1538
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_219(seq0, seq1) \
|
1539
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1540
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_218(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1541
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1542
|
+
)
|
1543
|
+
/**/
|
1544
|
+
|
1545
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_220(seq0, seq1) \
|
1546
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1547
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_219(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1548
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1549
|
+
)
|
1550
|
+
/**/
|
1551
|
+
|
1552
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_221(seq0, seq1) \
|
1553
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1554
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_220(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1555
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1556
|
+
)
|
1557
|
+
/**/
|
1558
|
+
|
1559
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_222(seq0, seq1) \
|
1560
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1561
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_221(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1562
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1563
|
+
)
|
1564
|
+
/**/
|
1565
|
+
|
1566
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_223(seq0, seq1) \
|
1567
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1568
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_222(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1569
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1570
|
+
)
|
1571
|
+
/**/
|
1572
|
+
|
1573
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_224(seq0, seq1) \
|
1574
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1575
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_223(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1576
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1577
|
+
)
|
1578
|
+
/**/
|
1579
|
+
|
1580
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_225(seq0, seq1) \
|
1581
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1582
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_224(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1583
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1584
|
+
)
|
1585
|
+
/**/
|
1586
|
+
|
1587
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_226(seq0, seq1) \
|
1588
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1589
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_225(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1590
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1591
|
+
)
|
1592
|
+
/**/
|
1593
|
+
|
1594
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_227(seq0, seq1) \
|
1595
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1596
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_226(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1597
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1598
|
+
)
|
1599
|
+
/**/
|
1600
|
+
|
1601
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_228(seq0, seq1) \
|
1602
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1603
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_227(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1604
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1605
|
+
)
|
1606
|
+
/**/
|
1607
|
+
|
1608
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_229(seq0, seq1) \
|
1609
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1610
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_228(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1611
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1612
|
+
)
|
1613
|
+
/**/
|
1614
|
+
|
1615
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_230(seq0, seq1) \
|
1616
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1617
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_229(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1618
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1619
|
+
)
|
1620
|
+
/**/
|
1621
|
+
|
1622
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_231(seq0, seq1) \
|
1623
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1624
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_230(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1625
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1626
|
+
)
|
1627
|
+
/**/
|
1628
|
+
|
1629
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_232(seq0, seq1) \
|
1630
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1631
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_231(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1632
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1633
|
+
)
|
1634
|
+
/**/
|
1635
|
+
|
1636
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_233(seq0, seq1) \
|
1637
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1638
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_232(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1639
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1640
|
+
)
|
1641
|
+
/**/
|
1642
|
+
|
1643
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_234(seq0, seq1) \
|
1644
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1645
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_233(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1646
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1647
|
+
)
|
1648
|
+
/**/
|
1649
|
+
|
1650
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_235(seq0, seq1) \
|
1651
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1652
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_234(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1653
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1654
|
+
)
|
1655
|
+
/**/
|
1656
|
+
|
1657
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_236(seq0, seq1) \
|
1658
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1659
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_235(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1660
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1661
|
+
)
|
1662
|
+
/**/
|
1663
|
+
|
1664
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_237(seq0, seq1) \
|
1665
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1666
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_236(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1667
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1668
|
+
)
|
1669
|
+
/**/
|
1670
|
+
|
1671
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_238(seq0, seq1) \
|
1672
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1673
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_237(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1674
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1675
|
+
)
|
1676
|
+
/**/
|
1677
|
+
|
1678
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_239(seq0, seq1) \
|
1679
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1680
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_238(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1681
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1682
|
+
)
|
1683
|
+
/**/
|
1684
|
+
|
1685
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_240(seq0, seq1) \
|
1686
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1687
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_239(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1688
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1689
|
+
)
|
1690
|
+
/**/
|
1691
|
+
|
1692
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_241(seq0, seq1) \
|
1693
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1694
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_240(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1695
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1696
|
+
)
|
1697
|
+
/**/
|
1698
|
+
|
1699
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_242(seq0, seq1) \
|
1700
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1701
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_241(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1702
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1703
|
+
)
|
1704
|
+
/**/
|
1705
|
+
|
1706
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_243(seq0, seq1) \
|
1707
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1708
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_242(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1709
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1710
|
+
)
|
1711
|
+
/**/
|
1712
|
+
|
1713
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_244(seq0, seq1) \
|
1714
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1715
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_243(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1716
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1717
|
+
)
|
1718
|
+
/**/
|
1719
|
+
|
1720
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_245(seq0, seq1) \
|
1721
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1722
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_244(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1723
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1724
|
+
)
|
1725
|
+
/**/
|
1726
|
+
|
1727
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_246(seq0, seq1) \
|
1728
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1729
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_245(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1730
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1731
|
+
)
|
1732
|
+
/**/
|
1733
|
+
|
1734
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_247(seq0, seq1) \
|
1735
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1736
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_246(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1737
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1738
|
+
)
|
1739
|
+
/**/
|
1740
|
+
|
1741
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_248(seq0, seq1) \
|
1742
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1743
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_247(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1744
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1745
|
+
)
|
1746
|
+
/**/
|
1747
|
+
|
1748
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_249(seq0, seq1) \
|
1749
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1750
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_248(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1751
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1752
|
+
)
|
1753
|
+
/**/
|
1754
|
+
|
1755
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_250(seq0, seq1) \
|
1756
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1757
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_249(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1758
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1759
|
+
)
|
1760
|
+
/**/
|
1761
|
+
|
1762
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_251(seq0, seq1) \
|
1763
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1764
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_250(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1765
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1766
|
+
)
|
1767
|
+
/**/
|
1768
|
+
|
1769
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_252(seq0, seq1) \
|
1770
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1771
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_251(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1772
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1773
|
+
)
|
1774
|
+
/**/
|
1775
|
+
|
1776
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_253(seq0, seq1) \
|
1777
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1778
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_252(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1779
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1780
|
+
)
|
1781
|
+
/**/
|
1782
|
+
|
1783
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_254(seq0, seq1) \
|
1784
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1785
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_253(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1786
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1787
|
+
)
|
1788
|
+
/**/
|
1789
|
+
|
1790
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE_255(seq0, seq1) \
|
1791
|
+
BOOST_PP_SEQ_PUSH_FRONT( \
|
1792
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_254(BOOST_PP_SEQ_TAIL(seq0), seq1) \
|
1793
|
+
, BOOST_PP_SEQ_HEAD(seq0) \
|
1794
|
+
)
|
1795
|
+
/**/
|
1796
|
+
|
1797
|
+
#include <boost/preprocessor/seq/size.hpp>
|
1798
|
+
#include <boost/preprocessor/cat.hpp>
|
1799
|
+
|
1800
|
+
#define BOOST_PARAMETER_AUX_PP_SEQ_MERGE(seq0, seq1) \
|
1801
|
+
BOOST_PP_CAT( \
|
1802
|
+
BOOST_PARAMETER_AUX_PP_SEQ_MERGE_, BOOST_PP_SEQ_SIZE(seq0) \
|
1803
|
+
)(seq0, seq1)
|
1804
|
+
/**/
|
1805
|
+
|
1806
|
+
#endif // include guard
|
1807
|
+
|