passenger 6.0.16 → 6.0.17
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +22 -1
- data/build/integration_tests.rb +6 -6
- data/build/ruby_tests.rb +1 -1
- data/build/test_basics.rb +0 -1
- data/src/agent/Core/Config.h +1 -1
- data/src/agent/Core/Controller/Config.h +1 -1
- data/src/agent/Core/SpawningKit/PipeWatcher.h +18 -3
- data/src/agent/Watchdog/Config.h +1 -1
- data/src/cxx_supportlib/Constants.h +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/align/aligned_alloc.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/array.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_executor.hpp +344 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_handler.hpp +686 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_io_executor.hpp +56 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +81 -25
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +68 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +46 -11
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_file.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_random_access_file.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_readable_pipe.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_serial_port.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_signal_set.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_file.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_writable_pipe.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_allocator.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +14 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/compose.hpp +30 -305
- data/src/cxx_supportlib/vendor-modified/boost/asio/consign.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/defer.hpp +17 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +98 -24
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/composed_work.hpp +330 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +81 -15
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +19 -11
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/descriptor_ops.ipp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/handler_tracking.ipp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_ops.ipp +10 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +14 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +18 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/utility.hpp +1 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +7 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/dispatch.hpp +4 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/allocator.hpp +22 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +447 -142
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking.hpp +57 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking_adaptation.hpp +51 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_execute.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_guarantee.hpp +41 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/connect.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context.hpp +13 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context_as.hpp +13 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_operation.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/execute.hpp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/executor.hpp +11 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/mapping.hpp +52 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/occupancy.hpp +13 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/operation_state.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/outstanding_work.hpp +39 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/relationship.hpp +39 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/schedule.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/scheduler.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/sender.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_done.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_error.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_value.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/start.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/submit.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/executor_work_guard.hpp +6 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_channel.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_concurrent_channel.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_traits.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_composed.hpp +146 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro.hpp +35 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_handler.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_operation.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_service.hpp +180 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_completion_handler.hpp +171 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_promise_allocator.hpp +89 -66
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/partial_promise.hpp +66 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/co_composed.hpp +1134 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/coro.hpp +130 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +377 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +168 -29
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_coro.hpp +149 -203
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_promise.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +256 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/promise.hpp +76 -80
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +40 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_promise.hpp +113 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_completion_executor.ipp +132 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_io_executor.ipp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/append.hpp +12 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/as_tuple.hpp +12 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +25 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +25 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +34 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +28 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/consign.hpp +204 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/defer.hpp +33 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/deferred.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/dispatch.hpp +21 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/post.hpp +33 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/prepend.hpp +12 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +40 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +27 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +104 -24
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +12 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +70 -15
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_future.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +38 -30
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +27 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +0 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.ipp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.ipp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/post.hpp +17 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/spawn.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/strand.hpp +11 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +0 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +23 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_object_handle.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_overlapped_handle.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/chrono/config.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/chrono.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/scan_keyword.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/chrono/duration.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_io.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_put.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_units.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_io.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/utility/ios_base_state_ptr.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/chrono/time_point.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/details.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang.hpp +10 -3
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang_version.hpp +9 -3
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc.hpp +9 -3
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/sunpro_cc.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/visualc.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/header_deprecated.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/container_fwd.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +13 -13
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/advanced_insert_int.hpp +80 -95
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_begin.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_end.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/copy_move_algo.hpp +738 -34
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/destroyers.hpp +38 -10
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterator.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/workaround.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +1150 -1213
- data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/options.hpp +104 -12
- data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +11 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +31 -331
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_mix.hpp +113 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_range.hpp +173 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_tuple.hpp +133 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash.hpp +461 -566
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash_fwd.hpp +24 -24
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_contiguous_range.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_described_class.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_range.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_unordered_range.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/bit.hpp +32 -4
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/string_view.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/empty_value.hpp +16 -16
- data/src/cxx_supportlib/vendor-modified/boost/core/fclose_deleter.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/formatters.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/formatters_limited.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_date.hpp +12 -13
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/parsers.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.ipp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/iso_format.hpp +13 -13
- data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/local_date_time.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_formatters.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_formatters_limited.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/special_values_parser.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_facet.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_parsing.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/describe/bases.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/describe/detail/config.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/describe/detail/cx_streq.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/describe/detail/void_t.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/describe/members.hpp +159 -0
- data/src/cxx_supportlib/vendor-modified/boost/describe/modifiers.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +45 -45
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +37 -38
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iterator.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +145 -90
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pack_options.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +11 -9
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_facade.hpp +106 -25
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +8 -5
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_unsigned_converters.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/adaptive_sort_merge.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/pdqsort.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/type_traits.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/mp11/bind.hpp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/version.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/int_float_mixture.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/sign_mixture.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/udt_builtin_mixture.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/has_opt.hpp +6 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp +11 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +7 -1
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category_impl.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.hpp +38 -43
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_condition.hpp +52 -0
- data/src/cxx_supportlib/vendor-modified/boost/throw_exception.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_ptr_helper.hpp +27 -27
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp +27 -27
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/intrinsics.hpp +22 -8
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fca.hpp +37 -7
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa.hpp +1921 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/implementation.hpp +66 -82
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/prime_fmod.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/type_traits.hpp +109 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/xmx.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/hash_traits.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_map.hpp +732 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_map_fwd.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_set.hpp +586 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_set_fwd.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map.hpp +166 -66
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set.hpp +145 -28
- data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/md5.hpp +1 -1
- data/src/ruby_native_extension/extconf.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/platform_info/operating_system.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger.rb +5 -5
- metadata +36 -19
- data/src/cxx_supportlib/vendor-modified/boost/align/align.hpp +0 -19
- data/src/cxx_supportlib/vendor-modified/boost/align/alignment_of.hpp +0 -54
- data/src/cxx_supportlib/vendor-modified/boost/align/alignment_of_forward.hpp +0 -20
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/align_cxx11.hpp +0 -21
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc.hpp +0 -52
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/alignment_of.hpp +0 -31
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/alignment_of_cxx11.hpp +0 -23
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/element_type.hpp +0 -91
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/integral_constant.hpp +0 -53
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/min_size.hpp +0 -26
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/completion_handler_erasure.hpp +0 -196
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/compose.hpp +0 -709
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/float_functions.hpp +0 -336
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_float.hpp +0 -271
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/limits.hpp +0 -62
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/extensions.hpp +0 -361
- data/src/cxx_supportlib/vendor-modified/boost/detail/container_fwd.hpp +0 -157
@@ -1,361 +0,0 @@
|
|
1
|
-
|
2
|
-
// Copyright 2005-2009 Daniel James.
|
3
|
-
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
4
|
-
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
5
|
-
|
6
|
-
// Based on Peter Dimov's proposal
|
7
|
-
// http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2005/n1756.pdf
|
8
|
-
// issue 6.18.
|
9
|
-
|
10
|
-
// This implements the extensions to the standard.
|
11
|
-
// It's undocumented, so you shouldn't use it....
|
12
|
-
|
13
|
-
#if !defined(BOOST_FUNCTIONAL_HASH_EXTENSIONS_HPP)
|
14
|
-
#define BOOST_FUNCTIONAL_HASH_EXTENSIONS_HPP
|
15
|
-
|
16
|
-
#include <boost/config.hpp>
|
17
|
-
#if defined(BOOST_HAS_PRAGMA_ONCE)
|
18
|
-
#pragma once
|
19
|
-
#endif
|
20
|
-
|
21
|
-
#include <boost/container_hash/hash.hpp>
|
22
|
-
#include <boost/detail/container_fwd.hpp>
|
23
|
-
#include <boost/core/enable_if.hpp>
|
24
|
-
#include <boost/static_assert.hpp>
|
25
|
-
|
26
|
-
#if !defined(BOOST_NO_CXX11_HDR_ARRAY)
|
27
|
-
# include <array>
|
28
|
-
#endif
|
29
|
-
|
30
|
-
#if !defined(BOOST_NO_CXX11_HDR_TUPLE)
|
31
|
-
# include <tuple>
|
32
|
-
#endif
|
33
|
-
|
34
|
-
#include <memory>
|
35
|
-
|
36
|
-
#if defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING)
|
37
|
-
#include <boost/type_traits/is_array.hpp>
|
38
|
-
#endif
|
39
|
-
|
40
|
-
namespace boost
|
41
|
-
{
|
42
|
-
template <class A, class B>
|
43
|
-
std::size_t hash_value(std::pair<A, B> const&);
|
44
|
-
template <class T, class A>
|
45
|
-
std::size_t hash_value(std::vector<T, A> const&);
|
46
|
-
template <class T, class A>
|
47
|
-
std::size_t hash_value(std::list<T, A> const& v);
|
48
|
-
template <class T, class A>
|
49
|
-
std::size_t hash_value(std::deque<T, A> const& v);
|
50
|
-
template <class K, class C, class A>
|
51
|
-
std::size_t hash_value(std::set<K, C, A> const& v);
|
52
|
-
template <class K, class C, class A>
|
53
|
-
std::size_t hash_value(std::multiset<K, C, A> const& v);
|
54
|
-
template <class K, class T, class C, class A>
|
55
|
-
std::size_t hash_value(std::map<K, T, C, A> const& v);
|
56
|
-
template <class K, class T, class C, class A>
|
57
|
-
std::size_t hash_value(std::multimap<K, T, C, A> const& v);
|
58
|
-
|
59
|
-
template <class T>
|
60
|
-
std::size_t hash_value(std::complex<T> const&);
|
61
|
-
|
62
|
-
template <class A, class B>
|
63
|
-
std::size_t hash_value(std::pair<A, B> const& v)
|
64
|
-
{
|
65
|
-
std::size_t seed = 0;
|
66
|
-
boost::hash_combine(seed, v.first);
|
67
|
-
boost::hash_combine(seed, v.second);
|
68
|
-
return seed;
|
69
|
-
}
|
70
|
-
|
71
|
-
template <class T, class A>
|
72
|
-
std::size_t hash_value(std::vector<T, A> const& v)
|
73
|
-
{
|
74
|
-
return boost::hash_range(v.begin(), v.end());
|
75
|
-
}
|
76
|
-
|
77
|
-
template <class T, class A>
|
78
|
-
std::size_t hash_value(std::list<T, A> const& v)
|
79
|
-
{
|
80
|
-
return boost::hash_range(v.begin(), v.end());
|
81
|
-
}
|
82
|
-
|
83
|
-
template <class T, class A>
|
84
|
-
std::size_t hash_value(std::deque<T, A> const& v)
|
85
|
-
{
|
86
|
-
return boost::hash_range(v.begin(), v.end());
|
87
|
-
}
|
88
|
-
|
89
|
-
template <class K, class C, class A>
|
90
|
-
std::size_t hash_value(std::set<K, C, A> const& v)
|
91
|
-
{
|
92
|
-
return boost::hash_range(v.begin(), v.end());
|
93
|
-
}
|
94
|
-
|
95
|
-
template <class K, class C, class A>
|
96
|
-
std::size_t hash_value(std::multiset<K, C, A> const& v)
|
97
|
-
{
|
98
|
-
return boost::hash_range(v.begin(), v.end());
|
99
|
-
}
|
100
|
-
|
101
|
-
template <class K, class T, class C, class A>
|
102
|
-
std::size_t hash_value(std::map<K, T, C, A> const& v)
|
103
|
-
{
|
104
|
-
return boost::hash_range(v.begin(), v.end());
|
105
|
-
}
|
106
|
-
|
107
|
-
template <class K, class T, class C, class A>
|
108
|
-
std::size_t hash_value(std::multimap<K, T, C, A> const& v)
|
109
|
-
{
|
110
|
-
return boost::hash_range(v.begin(), v.end());
|
111
|
-
}
|
112
|
-
|
113
|
-
template <class T>
|
114
|
-
std::size_t hash_value(std::complex<T> const& v)
|
115
|
-
{
|
116
|
-
boost::hash<T> hasher;
|
117
|
-
std::size_t seed = hasher(v.imag());
|
118
|
-
seed ^= hasher(v.real()) + (seed<<6) + (seed>>2);
|
119
|
-
return seed;
|
120
|
-
}
|
121
|
-
|
122
|
-
#if !defined(BOOST_NO_CXX11_HDR_ARRAY)
|
123
|
-
template <class T, std::size_t N>
|
124
|
-
std::size_t hash_value(std::array<T, N> const& v)
|
125
|
-
{
|
126
|
-
return boost::hash_range(v.begin(), v.end());
|
127
|
-
}
|
128
|
-
#endif
|
129
|
-
|
130
|
-
#if !defined(BOOST_NO_CXX11_HDR_TUPLE)
|
131
|
-
namespace hash_detail {
|
132
|
-
template <std::size_t I, typename T>
|
133
|
-
inline typename boost::enable_if_c<(I == std::tuple_size<T>::value),
|
134
|
-
void>::type
|
135
|
-
hash_combine_tuple(std::size_t&, T const&)
|
136
|
-
{
|
137
|
-
}
|
138
|
-
|
139
|
-
template <std::size_t I, typename T>
|
140
|
-
inline typename boost::enable_if_c<(I < std::tuple_size<T>::value),
|
141
|
-
void>::type
|
142
|
-
hash_combine_tuple(std::size_t& seed, T const& v)
|
143
|
-
{
|
144
|
-
boost::hash_combine(seed, std::get<I>(v));
|
145
|
-
boost::hash_detail::hash_combine_tuple<I + 1>(seed, v);
|
146
|
-
}
|
147
|
-
|
148
|
-
template <typename T>
|
149
|
-
inline std::size_t hash_tuple(T const& v)
|
150
|
-
{
|
151
|
-
std::size_t seed = 0;
|
152
|
-
boost::hash_detail::hash_combine_tuple<0>(seed, v);
|
153
|
-
return seed;
|
154
|
-
}
|
155
|
-
}
|
156
|
-
|
157
|
-
#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
|
158
|
-
template <typename... T>
|
159
|
-
inline std::size_t hash_value(std::tuple<T...> const& v)
|
160
|
-
{
|
161
|
-
return boost::hash_detail::hash_tuple(v);
|
162
|
-
}
|
163
|
-
#else
|
164
|
-
|
165
|
-
inline std::size_t hash_value(std::tuple<> const& v)
|
166
|
-
{
|
167
|
-
return boost::hash_detail::hash_tuple(v);
|
168
|
-
}
|
169
|
-
|
170
|
-
template<typename A0>
|
171
|
-
inline std::size_t hash_value(std::tuple<A0> const& v)
|
172
|
-
{
|
173
|
-
return boost::hash_detail::hash_tuple(v);
|
174
|
-
}
|
175
|
-
|
176
|
-
template<typename A0, typename A1>
|
177
|
-
inline std::size_t hash_value(std::tuple<A0, A1> const& v)
|
178
|
-
{
|
179
|
-
return boost::hash_detail::hash_tuple(v);
|
180
|
-
}
|
181
|
-
|
182
|
-
template<typename A0, typename A1, typename A2>
|
183
|
-
inline std::size_t hash_value(std::tuple<A0, A1, A2> const& v)
|
184
|
-
{
|
185
|
-
return boost::hash_detail::hash_tuple(v);
|
186
|
-
}
|
187
|
-
|
188
|
-
template<typename A0, typename A1, typename A2, typename A3>
|
189
|
-
inline std::size_t hash_value(std::tuple<A0, A1, A2, A3> const& v)
|
190
|
-
{
|
191
|
-
return boost::hash_detail::hash_tuple(v);
|
192
|
-
}
|
193
|
-
|
194
|
-
template<typename A0, typename A1, typename A2, typename A3, typename A4>
|
195
|
-
inline std::size_t hash_value(std::tuple<A0, A1, A2, A3, A4> const& v)
|
196
|
-
{
|
197
|
-
return boost::hash_detail::hash_tuple(v);
|
198
|
-
}
|
199
|
-
|
200
|
-
template<typename A0, typename A1, typename A2, typename A3, typename A4, typename A5>
|
201
|
-
inline std::size_t hash_value(std::tuple<A0, A1, A2, A3, A4, A5> const& v)
|
202
|
-
{
|
203
|
-
return boost::hash_detail::hash_tuple(v);
|
204
|
-
}
|
205
|
-
|
206
|
-
template<typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6>
|
207
|
-
inline std::size_t hash_value(std::tuple<A0, A1, A2, A3, A4, A5, A6> const& v)
|
208
|
-
{
|
209
|
-
return boost::hash_detail::hash_tuple(v);
|
210
|
-
}
|
211
|
-
|
212
|
-
template<typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7>
|
213
|
-
inline std::size_t hash_value(std::tuple<A0, A1, A2, A3, A4, A5, A6, A7> const& v)
|
214
|
-
{
|
215
|
-
return boost::hash_detail::hash_tuple(v);
|
216
|
-
}
|
217
|
-
|
218
|
-
template<typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8>
|
219
|
-
inline std::size_t hash_value(std::tuple<A0, A1, A2, A3, A4, A5, A6, A7, A8> const& v)
|
220
|
-
{
|
221
|
-
return boost::hash_detail::hash_tuple(v);
|
222
|
-
}
|
223
|
-
|
224
|
-
template<typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9>
|
225
|
-
inline std::size_t hash_value(std::tuple<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9> const& v)
|
226
|
-
{
|
227
|
-
return boost::hash_detail::hash_tuple(v);
|
228
|
-
}
|
229
|
-
|
230
|
-
#endif
|
231
|
-
|
232
|
-
#endif
|
233
|
-
|
234
|
-
#if !defined(BOOST_NO_CXX11_SMART_PTR)
|
235
|
-
template <typename T>
|
236
|
-
inline std::size_t hash_value(std::shared_ptr<T> const& x) {
|
237
|
-
return boost::hash_value(x.get());
|
238
|
-
}
|
239
|
-
|
240
|
-
template <typename T, typename Deleter>
|
241
|
-
inline std::size_t hash_value(std::unique_ptr<T, Deleter> const& x) {
|
242
|
-
return boost::hash_value(x.get());
|
243
|
-
}
|
244
|
-
#endif
|
245
|
-
|
246
|
-
//
|
247
|
-
// call_hash_impl
|
248
|
-
//
|
249
|
-
|
250
|
-
// On compilers without function template ordering, this deals with arrays.
|
251
|
-
|
252
|
-
#if defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING)
|
253
|
-
namespace hash_detail
|
254
|
-
{
|
255
|
-
template <bool IsArray>
|
256
|
-
struct call_hash_impl
|
257
|
-
{
|
258
|
-
template <class T>
|
259
|
-
struct inner
|
260
|
-
{
|
261
|
-
static std::size_t call(T const& v)
|
262
|
-
{
|
263
|
-
using namespace boost;
|
264
|
-
return hash_value(v);
|
265
|
-
}
|
266
|
-
};
|
267
|
-
};
|
268
|
-
|
269
|
-
template <>
|
270
|
-
struct call_hash_impl<true>
|
271
|
-
{
|
272
|
-
template <class Array>
|
273
|
-
struct inner
|
274
|
-
{
|
275
|
-
static std::size_t call(Array const& v)
|
276
|
-
{
|
277
|
-
const int size = sizeof(v) / sizeof(*v);
|
278
|
-
return boost::hash_range(v, v + size);
|
279
|
-
}
|
280
|
-
};
|
281
|
-
};
|
282
|
-
|
283
|
-
template <class T>
|
284
|
-
struct call_hash
|
285
|
-
: public call_hash_impl<boost::is_array<T>::value>
|
286
|
-
::BOOST_NESTED_TEMPLATE inner<T>
|
287
|
-
{
|
288
|
-
};
|
289
|
-
}
|
290
|
-
#endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
291
|
-
|
292
|
-
//
|
293
|
-
// boost::hash
|
294
|
-
//
|
295
|
-
|
296
|
-
|
297
|
-
#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
|
298
|
-
|
299
|
-
template <class T> struct hash
|
300
|
-
: boost::hash_detail::hash_base<T>
|
301
|
-
{
|
302
|
-
#if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING)
|
303
|
-
std::size_t operator()(T const& val) const
|
304
|
-
{
|
305
|
-
return hash_value(val);
|
306
|
-
}
|
307
|
-
#else
|
308
|
-
std::size_t operator()(T const& val) const
|
309
|
-
{
|
310
|
-
return hash_detail::call_hash<T>::call(val);
|
311
|
-
}
|
312
|
-
#endif
|
313
|
-
};
|
314
|
-
|
315
|
-
#if BOOST_WORKAROUND(__DMC__, <= 0x848)
|
316
|
-
template <class T, unsigned int n> struct hash<T[n]>
|
317
|
-
: boost::hash_detail::hash_base<T[n]>
|
318
|
-
{
|
319
|
-
std::size_t operator()(const T* val) const
|
320
|
-
{
|
321
|
-
return boost::hash_range(val, val+n);
|
322
|
-
}
|
323
|
-
};
|
324
|
-
#endif
|
325
|
-
|
326
|
-
#else // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
327
|
-
|
328
|
-
// On compilers without partial specialization, boost::hash<T>
|
329
|
-
// has already been declared to deal with pointers, so just
|
330
|
-
// need to supply the non-pointer version of hash_impl.
|
331
|
-
|
332
|
-
namespace hash_detail
|
333
|
-
{
|
334
|
-
template <bool IsPointer>
|
335
|
-
struct hash_impl;
|
336
|
-
|
337
|
-
template <>
|
338
|
-
struct hash_impl<false>
|
339
|
-
{
|
340
|
-
template <class T>
|
341
|
-
struct inner
|
342
|
-
: boost::hash_detail::hash_base<T>
|
343
|
-
{
|
344
|
-
#if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING)
|
345
|
-
std::size_t operator()(T const& val) const
|
346
|
-
{
|
347
|
-
return hash_value(val);
|
348
|
-
}
|
349
|
-
#else
|
350
|
-
std::size_t operator()(T const& val) const
|
351
|
-
{
|
352
|
-
return hash_detail::call_hash<T>::call(val);
|
353
|
-
}
|
354
|
-
#endif
|
355
|
-
};
|
356
|
-
};
|
357
|
-
}
|
358
|
-
#endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
359
|
-
}
|
360
|
-
|
361
|
-
#endif
|
@@ -1,157 +0,0 @@
|
|
1
|
-
|
2
|
-
// Copyright 2005-2011 Daniel James.
|
3
|
-
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
4
|
-
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
5
|
-
|
6
|
-
// Note: if you change this include guard, you also need to change
|
7
|
-
// container_fwd_compile_fail.cpp
|
8
|
-
#if !defined(BOOST_DETAIL_CONTAINER_FWD_HPP)
|
9
|
-
#define BOOST_DETAIL_CONTAINER_FWD_HPP
|
10
|
-
|
11
|
-
#if defined(_MSC_VER) && \
|
12
|
-
!defined(BOOST_DETAIL_TEST_CONFIG_ONLY)
|
13
|
-
# pragma once
|
14
|
-
#endif
|
15
|
-
|
16
|
-
#include <boost/config.hpp>
|
17
|
-
#include <boost/detail/workaround.hpp>
|
18
|
-
|
19
|
-
////////////////////////////////////////////////////////////////////////////////
|
20
|
-
// //
|
21
|
-
// Define BOOST_DETAIL_NO_CONTAINER_FWD if you don't want this header to //
|
22
|
-
// forward declare standard containers. //
|
23
|
-
// //
|
24
|
-
// BOOST_DETAIL_CONTAINER_FWD to make it foward declare containers even if it //
|
25
|
-
// normally doesn't. //
|
26
|
-
// //
|
27
|
-
// BOOST_DETAIL_NO_CONTAINER_FWD overrides BOOST_DETAIL_CONTAINER_FWD. //
|
28
|
-
// //
|
29
|
-
////////////////////////////////////////////////////////////////////////////////
|
30
|
-
|
31
|
-
#if !defined(BOOST_DETAIL_NO_CONTAINER_FWD)
|
32
|
-
# if defined(BOOST_DETAIL_CONTAINER_FWD)
|
33
|
-
// Force forward declarations.
|
34
|
-
# elif defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)
|
35
|
-
// STLport
|
36
|
-
# define BOOST_DETAIL_NO_CONTAINER_FWD
|
37
|
-
# elif defined(__LIBCOMO__)
|
38
|
-
// Comeau STL:
|
39
|
-
# define BOOST_DETAIL_NO_CONTAINER_FWD
|
40
|
-
# elif defined(__STD_RWCOMPILER_H__) || defined(_RWSTD_VER)
|
41
|
-
// Rogue Wave library:
|
42
|
-
# define BOOST_DETAIL_NO_CONTAINER_FWD
|
43
|
-
# elif defined(_LIBCPP_VERSION)
|
44
|
-
// libc++
|
45
|
-
# define BOOST_DETAIL_NO_CONTAINER_FWD
|
46
|
-
# elif defined(__GLIBCPP__) || defined(__GLIBCXX__)
|
47
|
-
// GNU libstdc++ 3
|
48
|
-
//
|
49
|
-
// Disable forwarding for all recent versions, as the library has a
|
50
|
-
// versioned namespace mode, and I don't know how to detect it.
|
51
|
-
# if __GLIBCXX__ >= 20070513 \
|
52
|
-
|| defined(_GLIBCXX_DEBUG) \
|
53
|
-
|| defined(_GLIBCXX_PARALLEL) \
|
54
|
-
|| defined(_GLIBCXX_PROFILE)
|
55
|
-
# define BOOST_DETAIL_NO_CONTAINER_FWD
|
56
|
-
# else
|
57
|
-
# if defined(__GLIBCXX__) && __GLIBCXX__ >= 20040530
|
58
|
-
# define BOOST_CONTAINER_FWD_COMPLEX_STRUCT
|
59
|
-
# endif
|
60
|
-
# endif
|
61
|
-
# elif defined(__STL_CONFIG_H)
|
62
|
-
// generic SGI STL
|
63
|
-
//
|
64
|
-
// Forward declaration seems to be okay, but it has a couple of odd
|
65
|
-
// implementations.
|
66
|
-
# define BOOST_CONTAINER_FWD_BAD_BITSET
|
67
|
-
# if !defined(__STL_NON_TYPE_TMPL_PARAM_BUG)
|
68
|
-
# define BOOST_CONTAINER_FWD_BAD_DEQUE
|
69
|
-
# endif
|
70
|
-
# elif defined(__MSL_CPP__)
|
71
|
-
// MSL standard lib:
|
72
|
-
# define BOOST_DETAIL_NO_CONTAINER_FWD
|
73
|
-
# elif defined(__IBMCPP__)
|
74
|
-
// The default VACPP std lib, forward declaration seems to be fine.
|
75
|
-
# elif defined(MSIPL_COMPILE_H)
|
76
|
-
// Modena C++ standard library
|
77
|
-
# define BOOST_DETAIL_NO_CONTAINER_FWD
|
78
|
-
# elif (defined(_YVALS) && !defined(__IBMCPP__)) || defined(_CPPLIB_VER)
|
79
|
-
// Dinkumware Library (this has to appear after any possible replacement
|
80
|
-
// libraries)
|
81
|
-
# else
|
82
|
-
# define BOOST_DETAIL_NO_CONTAINER_FWD
|
83
|
-
# endif
|
84
|
-
#endif
|
85
|
-
|
86
|
-
#if !defined(BOOST_DETAIL_TEST_CONFIG_ONLY)
|
87
|
-
|
88
|
-
#if defined(BOOST_DETAIL_NO_CONTAINER_FWD) && \
|
89
|
-
!defined(BOOST_DETAIL_TEST_FORCE_CONTAINER_FWD)
|
90
|
-
|
91
|
-
#include <deque>
|
92
|
-
#include <list>
|
93
|
-
#include <vector>
|
94
|
-
#include <map>
|
95
|
-
#include <set>
|
96
|
-
#include <bitset>
|
97
|
-
#include <string>
|
98
|
-
#include <complex>
|
99
|
-
|
100
|
-
#else
|
101
|
-
|
102
|
-
#include <cstddef>
|
103
|
-
|
104
|
-
#if defined(BOOST_CONTAINER_FWD_BAD_DEQUE)
|
105
|
-
#include <deque>
|
106
|
-
#endif
|
107
|
-
|
108
|
-
#if defined(BOOST_CONTAINER_FWD_BAD_BITSET)
|
109
|
-
#include <bitset>
|
110
|
-
#endif
|
111
|
-
|
112
|
-
#if defined(BOOST_MSVC)
|
113
|
-
#pragma warning(push)
|
114
|
-
#pragma warning(disable:4099) // struct/class mismatch in fwd declarations
|
115
|
-
#endif
|
116
|
-
|
117
|
-
namespace std
|
118
|
-
{
|
119
|
-
template <class T> class allocator;
|
120
|
-
template <class charT, class traits, class Allocator> class basic_string;
|
121
|
-
|
122
|
-
template <class charT> struct char_traits;
|
123
|
-
|
124
|
-
#if defined(BOOST_CONTAINER_FWD_COMPLEX_STRUCT)
|
125
|
-
template <class T> struct complex;
|
126
|
-
#else
|
127
|
-
template <class T> class complex;
|
128
|
-
#endif
|
129
|
-
|
130
|
-
#if !defined(BOOST_CONTAINER_FWD_BAD_DEQUE)
|
131
|
-
template <class T, class Allocator> class deque;
|
132
|
-
#endif
|
133
|
-
|
134
|
-
template <class T, class Allocator> class list;
|
135
|
-
template <class T, class Allocator> class vector;
|
136
|
-
template <class Key, class T, class Compare, class Allocator> class map;
|
137
|
-
template <class Key, class T, class Compare, class Allocator>
|
138
|
-
class multimap;
|
139
|
-
template <class Key, class Compare, class Allocator> class set;
|
140
|
-
template <class Key, class Compare, class Allocator> class multiset;
|
141
|
-
|
142
|
-
#if !defined(BOOST_CONTAINER_FWD_BAD_BITSET)
|
143
|
-
template <size_t N> class bitset;
|
144
|
-
#endif
|
145
|
-
template <class T1, class T2> struct pair;
|
146
|
-
}
|
147
|
-
|
148
|
-
#if defined(BOOST_MSVC)
|
149
|
-
#pragma warning(pop)
|
150
|
-
#endif
|
151
|
-
|
152
|
-
#endif // BOOST_DETAIL_NO_CONTAINER_FWD &&
|
153
|
-
// !defined(BOOST_DETAIL_TEST_FORCE_CONTAINER_FWD)
|
154
|
-
|
155
|
-
#endif // BOOST_DETAIL_TEST_CONFIG_ONLY
|
156
|
-
|
157
|
-
#endif
|