passenger 6.0.16 → 6.0.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (286) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +22 -1
  3. data/build/integration_tests.rb +6 -6
  4. data/build/ruby_tests.rb +1 -1
  5. data/build/test_basics.rb +0 -1
  6. data/src/agent/Core/Config.h +1 -1
  7. data/src/agent/Core/Controller/Config.h +1 -1
  8. data/src/agent/Core/SpawningKit/PipeWatcher.h +18 -3
  9. data/src/agent/Watchdog/Config.h +1 -1
  10. data/src/cxx_supportlib/Constants.h +1 -1
  11. data/src/cxx_supportlib/vendor-modified/boost/align/aligned_alloc.hpp +1 -1
  12. data/src/cxx_supportlib/vendor-modified/boost/array.hpp +1 -1
  13. data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_executor.hpp +344 -0
  14. data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_handler.hpp +686 -0
  15. data/src/cxx_supportlib/vendor-modified/boost/asio/any_io_executor.hpp +56 -0
  16. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +81 -25
  17. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +68 -8
  18. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +46 -11
  19. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +4 -4
  20. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +2 -2
  21. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_file.hpp +1 -1
  22. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_random_access_file.hpp +2 -2
  23. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +4 -4
  24. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_readable_pipe.hpp +2 -2
  25. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +2 -2
  26. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_serial_port.hpp +3 -3
  27. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_signal_set.hpp +2 -2
  28. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +3 -3
  29. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +4 -4
  30. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_file.hpp +2 -2
  31. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +2 -2
  32. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +2 -2
  33. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_writable_pipe.hpp +2 -2
  34. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_allocator.hpp +13 -3
  35. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +14 -3
  36. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +13 -3
  37. data/src/cxx_supportlib/vendor-modified/boost/asio/compose.hpp +30 -305
  38. data/src/cxx_supportlib/vendor-modified/boost/asio/consign.hpp +90 -0
  39. data/src/cxx_supportlib/vendor-modified/boost/asio/defer.hpp +17 -18
  40. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +98 -24
  41. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/composed_work.hpp +330 -0
  42. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +81 -15
  43. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +4 -4
  44. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +19 -11
  45. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/descriptor_ops.ipp +37 -0
  46. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/handler_tracking.ipp +3 -1
  47. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +1 -1
  48. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_ops.ipp +10 -2
  49. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +14 -1
  50. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +18 -0
  51. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/utility.hpp +1 -2
  52. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +7 -3
  53. data/src/cxx_supportlib/vendor-modified/boost/asio/dispatch.hpp +4 -14
  54. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/allocator.hpp +22 -3
  55. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +447 -142
  56. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking.hpp +57 -8
  57. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking_adaptation.hpp +51 -6
  58. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_execute.hpp +5 -0
  59. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_guarantee.hpp +41 -4
  60. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/connect.hpp +5 -0
  61. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context.hpp +13 -2
  62. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context_as.hpp +13 -2
  63. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_operation.hpp +4 -0
  64. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/execute.hpp +9 -2
  65. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/executor.hpp +11 -1
  66. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/mapping.hpp +52 -8
  67. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/occupancy.hpp +13 -2
  68. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/operation_state.hpp +5 -0
  69. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/outstanding_work.hpp +39 -6
  70. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver.hpp +5 -0
  71. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/relationship.hpp +39 -6
  72. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/schedule.hpp +5 -0
  73. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/scheduler.hpp +5 -0
  74. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/sender.hpp +5 -0
  75. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_done.hpp +5 -0
  76. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_error.hpp +5 -0
  77. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_value.hpp +5 -0
  78. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/start.hpp +5 -0
  79. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/submit.hpp +5 -0
  80. data/src/cxx_supportlib/vendor-modified/boost/asio/executor_work_guard.hpp +6 -9
  81. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_channel.hpp +3 -3
  82. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_concurrent_channel.hpp +3 -3
  83. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_traits.hpp +70 -0
  84. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_composed.hpp +146 -0
  85. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro.hpp +35 -5
  86. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_handler.hpp +13 -3
  87. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_operation.hpp +7 -0
  88. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_service.hpp +180 -0
  89. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_completion_handler.hpp +171 -0
  90. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_promise_allocator.hpp +89 -66
  91. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/partial_promise.hpp +66 -45
  92. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +13 -3
  93. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/co_composed.hpp +1134 -0
  94. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/coro.hpp +130 -106
  95. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +377 -3
  96. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +168 -29
  97. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_coro.hpp +149 -203
  98. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_promise.hpp +68 -0
  99. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +256 -0
  100. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/promise.hpp +76 -80
  101. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +40 -14
  102. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_promise.hpp +113 -0
  103. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_completion_executor.ipp +132 -0
  104. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_io_executor.ipp +12 -0
  105. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/append.hpp +12 -3
  106. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/as_tuple.hpp +12 -3
  107. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +25 -6
  108. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +25 -6
  109. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +34 -45
  110. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +28 -6
  111. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/consign.hpp +204 -0
  112. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/defer.hpp +33 -1
  113. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/deferred.hpp +13 -3
  114. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/dispatch.hpp +21 -9
  115. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +1 -1
  116. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/post.hpp +33 -1
  117. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/prepend.hpp +12 -3
  118. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +40 -9
  119. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +27 -6
  120. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +104 -24
  121. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +12 -3
  122. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +70 -15
  123. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.hpp +1 -0
  124. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_future.hpp +25 -0
  125. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +38 -30
  126. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +27 -6
  127. data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +0 -13
  128. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.ipp +3 -1
  129. data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.ipp +3 -1
  130. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +2 -2
  131. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +2 -2
  132. data/src/cxx_supportlib/vendor-modified/boost/asio/post.hpp +17 -18
  133. data/src/cxx_supportlib/vendor-modified/boost/asio/spawn.hpp +3 -1
  134. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +13 -3
  135. data/src/cxx_supportlib/vendor-modified/boost/asio/strand.hpp +11 -7
  136. data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +0 -13
  137. data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +23 -18
  138. data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +1 -1
  139. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_object_handle.hpp +2 -2
  140. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_overlapped_handle.hpp +1 -1
  141. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +2 -2
  142. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +2 -2
  143. data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +4 -0
  144. data/src/cxx_supportlib/vendor-modified/boost/bind/bind.hpp +1 -1
  145. data/src/cxx_supportlib/vendor-modified/boost/chrono/config.hpp +1 -0
  146. data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/chrono.hpp +4 -4
  147. data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/scan_keyword.hpp +4 -2
  148. data/src/cxx_supportlib/vendor-modified/boost/chrono/duration.hpp +2 -2
  149. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_io.hpp +3 -3
  150. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_put.hpp +5 -5
  151. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_units.hpp +2 -2
  152. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_io.hpp +2 -2
  153. data/src/cxx_supportlib/vendor-modified/boost/chrono/io/utility/ios_base_state_ptr.hpp +7 -7
  154. data/src/cxx_supportlib/vendor-modified/boost/chrono/time_point.hpp +1 -1
  155. data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/details.hpp +5 -1
  156. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang.hpp +10 -3
  157. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang_version.hpp +9 -3
  158. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc.hpp +9 -3
  159. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/sunpro_cc.hpp +6 -0
  160. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/visualc.hpp +8 -0
  161. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp.hpp +4 -0
  162. data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +33 -0
  163. data/src/cxx_supportlib/vendor-modified/boost/config/header_deprecated.hpp +1 -1
  164. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +9 -0
  165. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +4 -2
  166. data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +1 -1
  167. data/src/cxx_supportlib/vendor-modified/boost/container/container_fwd.hpp +29 -0
  168. data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +13 -13
  169. data/src/cxx_supportlib/vendor-modified/boost/container/detail/advanced_insert_int.hpp +80 -95
  170. data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_begin.hpp +10 -0
  171. data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_end.hpp +3 -0
  172. data/src/cxx_supportlib/vendor-modified/boost/container/detail/copy_move_algo.hpp +738 -34
  173. data/src/cxx_supportlib/vendor-modified/boost/container/detail/destroyers.hpp +38 -10
  174. data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +1 -0
  175. data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterator.hpp +2 -0
  176. data/src/cxx_supportlib/vendor-modified/boost/container/detail/workaround.hpp +3 -4
  177. data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +1150 -1213
  178. data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +1 -1
  179. data/src/cxx_supportlib/vendor-modified/boost/container/options.hpp +104 -12
  180. data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +1 -0
  181. data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +11 -1
  182. data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +31 -331
  183. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_mix.hpp +113 -0
  184. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_range.hpp +173 -0
  185. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_tuple.hpp +133 -0
  186. data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash.hpp +461 -566
  187. data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash_fwd.hpp +24 -24
  188. data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_contiguous_range.hpp +91 -0
  189. data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_described_class.hpp +38 -0
  190. data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_range.hpp +73 -0
  191. data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_unordered_range.hpp +39 -0
  192. data/src/cxx_supportlib/vendor-modified/boost/core/bit.hpp +32 -4
  193. data/src/cxx_supportlib/vendor-modified/boost/core/detail/string_view.hpp +16 -0
  194. data/src/cxx_supportlib/vendor-modified/boost/core/empty_value.hpp +16 -16
  195. data/src/cxx_supportlib/vendor-modified/boost/core/fclose_deleter.hpp +46 -0
  196. data/src/cxx_supportlib/vendor-modified/boost/date_time/date.hpp +1 -1
  197. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/formatters.hpp +3 -3
  198. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/formatters_limited.hpp +3 -3
  199. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_date.hpp +12 -13
  200. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/parsers.hpp +2 -2
  201. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.ipp +2 -2
  202. data/src/cxx_supportlib/vendor-modified/boost/date_time/iso_format.hpp +13 -13
  203. data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/local_date_time.hpp +2 -2
  204. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_formatters.hpp +4 -4
  205. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_formatters_limited.hpp +2 -2
  206. data/src/cxx_supportlib/vendor-modified/boost/date_time/special_values_parser.hpp +1 -1
  207. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_facet.hpp +1 -1
  208. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_parsing.hpp +2 -2
  209. data/src/cxx_supportlib/vendor-modified/boost/describe/bases.hpp +50 -0
  210. data/src/cxx_supportlib/vendor-modified/boost/describe/detail/config.hpp +40 -0
  211. data/src/cxx_supportlib/vendor-modified/boost/describe/detail/cx_streq.hpp +30 -0
  212. data/src/cxx_supportlib/vendor-modified/boost/describe/detail/void_t.hpp +32 -0
  213. data/src/cxx_supportlib/vendor-modified/boost/describe/members.hpp +159 -0
  214. data/src/cxx_supportlib/vendor-modified/boost/describe/modifiers.hpp +33 -0
  215. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +9 -9
  216. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +45 -45
  217. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +8 -8
  218. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +37 -38
  219. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iterator.hpp +16 -0
  220. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +1 -1
  221. data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +145 -90
  222. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pack_options.hpp +2 -0
  223. data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +7 -7
  224. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +5 -5
  225. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +11 -9
  226. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +7 -7
  227. data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_facade.hpp +106 -25
  228. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +1 -1
  229. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +8 -5
  230. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_unsigned_converters.hpp +1 -1
  231. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/adaptive_sort_merge.hpp +4 -2
  232. data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/pdqsort.hpp +2 -1
  233. data/src/cxx_supportlib/vendor-modified/boost/move/detail/type_traits.hpp +8 -4
  234. data/src/cxx_supportlib/vendor-modified/boost/mp11/bind.hpp +111 -0
  235. data/src/cxx_supportlib/vendor-modified/boost/mp11/version.hpp +1 -1
  236. data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/int_float_mixture.hpp +5 -5
  237. data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/sign_mixture.hpp +5 -5
  238. data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/udt_builtin_mixture.hpp +5 -5
  239. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/has_opt.hpp +6 -2
  240. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp +11 -2
  241. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ptr.hpp +1 -1
  242. data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +7 -1
  243. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category.hpp +2 -2
  244. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category_impl.hpp +10 -1
  245. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.hpp +38 -43
  246. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_condition.hpp +52 -0
  247. data/src/cxx_supportlib/vendor-modified/boost/throw_exception.hpp +1 -1
  248. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_ptr_helper.hpp +27 -27
  249. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp +27 -27
  250. data/src/cxx_supportlib/vendor-modified/boost/type_traits/intrinsics.hpp +22 -8
  251. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fca.hpp +37 -7
  252. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa.hpp +1921 -0
  253. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/implementation.hpp +66 -82
  254. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/prime_fmod.hpp +6 -0
  255. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/type_traits.hpp +109 -0
  256. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/xmx.hpp +75 -0
  257. data/src/cxx_supportlib/vendor-modified/boost/unordered/hash_traits.hpp +45 -0
  258. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_map.hpp +732 -0
  259. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_map_fwd.hpp +49 -0
  260. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_set.hpp +586 -0
  261. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_set_fwd.hpp +49 -0
  262. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map.hpp +166 -66
  263. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set.hpp +145 -28
  264. data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
  265. data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/md5.hpp +1 -1
  266. data/src/ruby_native_extension/extconf.rb +1 -1
  267. data/src/ruby_supportlib/phusion_passenger/platform_info/operating_system.rb +1 -1
  268. data/src/ruby_supportlib/phusion_passenger.rb +5 -5
  269. metadata +36 -19
  270. data/src/cxx_supportlib/vendor-modified/boost/align/align.hpp +0 -19
  271. data/src/cxx_supportlib/vendor-modified/boost/align/alignment_of.hpp +0 -54
  272. data/src/cxx_supportlib/vendor-modified/boost/align/alignment_of_forward.hpp +0 -20
  273. data/src/cxx_supportlib/vendor-modified/boost/align/detail/align_cxx11.hpp +0 -21
  274. data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc.hpp +0 -52
  275. data/src/cxx_supportlib/vendor-modified/boost/align/detail/alignment_of.hpp +0 -31
  276. data/src/cxx_supportlib/vendor-modified/boost/align/detail/alignment_of_cxx11.hpp +0 -23
  277. data/src/cxx_supportlib/vendor-modified/boost/align/detail/element_type.hpp +0 -91
  278. data/src/cxx_supportlib/vendor-modified/boost/align/detail/integral_constant.hpp +0 -53
  279. data/src/cxx_supportlib/vendor-modified/boost/align/detail/min_size.hpp +0 -26
  280. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/completion_handler_erasure.hpp +0 -196
  281. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/compose.hpp +0 -709
  282. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/float_functions.hpp +0 -336
  283. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_float.hpp +0 -271
  284. data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/limits.hpp +0 -62
  285. data/src/cxx_supportlib/vendor-modified/boost/container_hash/extensions.hpp +0 -361
  286. data/src/cxx_supportlib/vendor-modified/boost/detail/container_fwd.hpp +0 -157
@@ -182,7 +182,7 @@ namespace chrono {
182
182
  , typename boost::enable_if
183
183
  <
184
184
  boost::is_convertible<Duration2, duration>
185
- >::type* = 0
185
+ >::type* = BOOST_NULLPTR
186
186
  )
187
187
  : d_(t.time_since_epoch())
188
188
  {
@@ -259,7 +259,10 @@ struct iterator
259
259
  #endif // #if BOOST_CB_ENABLE_DEBUG
260
260
 
261
261
  //! Assign operator.
262
- iterator& operator = (const iterator& it) {
262
+ #if !defined(BOOST_NO_CXX11_DEFAULTED_FUNCTIONS)
263
+ iterator& operator=(const iterator&) = default;
264
+ #else
265
+ iterator& operator=(const iterator& it) {
263
266
  if (this == &it)
264
267
  return *this;
265
268
  #if BOOST_CB_ENABLE_DEBUG
@@ -269,6 +272,7 @@ struct iterator
269
272
  m_it = it.m_it;
270
273
  return *this;
271
274
  }
275
+ #endif
272
276
 
273
277
  // Random access iterator methods
274
278
 
@@ -325,11 +325,18 @@
325
325
  // All versions with __cplusplus above this value seem to support this:
326
326
  # define BOOST_NO_CXX14_DIGIT_SEPARATORS
327
327
  #endif
328
- //
329
- // __builtin_unreachable:
330
- #if defined(__has_builtin) && __has_builtin(__builtin_unreachable)
328
+
329
+ // Unreachable code markup
330
+ #if defined(__has_builtin)
331
+ #if __has_builtin(__builtin_unreachable)
331
332
  #define BOOST_UNREACHABLE_RETURN(x) __builtin_unreachable();
332
333
  #endif
334
+ #endif
335
+
336
+ // Deprecated symbol markup
337
+ #if __has_attribute(deprecated)
338
+ #define BOOST_DEPRECATED(msg) __attribute__((deprecated(msg)))
339
+ #endif
333
340
 
334
341
  #if (__clang_major__ == 3) && (__clang_minor__ == 0)
335
342
  // Apparently a clang bug:
@@ -4,14 +4,20 @@
4
4
 
5
5
  #if !defined(__APPLE__)
6
6
 
7
- # define BOOST_CLANG_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__)
7
+ # define BOOST_CLANG_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__ % 100)
8
8
 
9
9
  #else
10
- # define BOOST_CLANG_REPORTED_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__)
10
+ # define BOOST_CLANG_REPORTED_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__ % 100)
11
11
 
12
12
  // https://en.wikipedia.org/wiki/Xcode#Toolchain_versions
13
13
 
14
- # if BOOST_CLANG_REPORTED_VERSION >= 130000
14
+ # if BOOST_CLANG_REPORTED_VERSION >= 140000
15
+ # define BOOST_CLANG_VERSION 140000
16
+
17
+ # elif BOOST_CLANG_REPORTED_VERSION >= 130100
18
+ # define BOOST_CLANG_VERSION 130000
19
+
20
+ # elif BOOST_CLANG_REPORTED_VERSION >= 130000
15
21
  # define BOOST_CLANG_VERSION 120000
16
22
 
17
23
  # elif BOOST_CLANG_REPORTED_VERSION >= 120005
@@ -340,12 +340,18 @@
340
340
  // Type aliasing hint. Supported since gcc 3.3.
341
341
  #define BOOST_MAY_ALIAS __attribute__((__may_alias__))
342
342
 
343
- //
344
- // __builtin_unreachable:
343
+ // Unreachable code markup
345
344
  #if BOOST_GCC_VERSION >= 40500
346
345
  #define BOOST_UNREACHABLE_RETURN(x) __builtin_unreachable();
347
346
  #endif
348
347
 
348
+ // Deprecated symbol markup
349
+ #if BOOST_GCC_VERSION >= 40500
350
+ #define BOOST_DEPRECATED(msg) __attribute__((deprecated(msg)))
351
+ #else
352
+ #define BOOST_DEPRECATED(msg) __attribute__((deprecated))
353
+ #endif
354
+
349
355
  #ifndef BOOST_COMPILER
350
356
  # define BOOST_COMPILER "GNU C++ version " __VERSION__
351
357
  #endif
@@ -359,7 +365,7 @@
359
365
 
360
366
  // versions check:
361
367
  // we don't know gcc prior to version 3.30:
362
- #if (BOOST_GCC_VERSION< 30300)
368
+ #if (BOOST_GCC_VERSION < 30300)
363
369
  # error "Compiler not configured - please reconfigure"
364
370
  #endif
365
371
  //
@@ -86,6 +86,12 @@
86
86
  # define BOOST_SYMBOL_VISIBLE __global
87
87
  #endif
88
88
 
89
+ // Deprecated symbol markup
90
+ // Oracle Studio 12.4 supports deprecated attribute with a message; this is the first release that supports the attribute.
91
+ #if (__SUNPRO_CC >= 0x5130)
92
+ #define BOOST_DEPRECATED(msg) __attribute__((deprecated(msg)))
93
+ #endif
94
+
89
95
  #if (__SUNPRO_CC < 0x5130)
90
96
  // C++03 features in 12.4:
91
97
  #define BOOST_NO_TWO_PHASE_NAME_LOOKUP
@@ -107,6 +107,14 @@
107
107
  # define BOOST_NO_RTTI
108
108
  #endif
109
109
 
110
+ // Deprecated symbol markup
111
+ #if (_MSC_VER >= 1400)
112
+ #define BOOST_DEPRECATED(msg) __declspec(deprecated(msg))
113
+ #else
114
+ // MSVC 7.1 only supports the attribute without a message
115
+ #define BOOST_DEPRECATED(msg) __declspec(deprecated)
116
+ #endif
117
+
110
118
  //
111
119
  // TR1 features:
112
120
  //
@@ -270,6 +270,10 @@
270
270
  # define BOOST_NO_CXX14_DIGIT_SEPARATORS
271
271
  #endif
272
272
 
273
+ // Deprecated symbol markup
274
+ #if __has_attribute(deprecated)
275
+ #define BOOST_DEPRECATED(msg) __attribute__((deprecated(msg)))
276
+ #endif
273
277
 
274
278
  // Unused attribute:
275
279
  #if defined(__GNUC__) && (__GNUC__ >= 4)
@@ -47,6 +47,22 @@
47
47
  # define BOOST_SYMBOL_VISIBLE
48
48
  #endif
49
49
 
50
+ //
51
+ // disable explicitly enforced visibility
52
+ //
53
+ #if defined(BOOST_DISABLE_EXPLICIT_SYMBOL_VISIBILITY)
54
+
55
+ #undef BOOST_SYMBOL_EXPORT
56
+ #define BOOST_SYMBOL_EXPORT
57
+
58
+ #undef BOOST_SYMBOL_IMPORT
59
+ #define BOOST_SYMBOL_IMPORT
60
+
61
+ #undef BOOST_SYMBOL_VISIBLE
62
+ #define BOOST_SYMBOL_VISIBLE
63
+
64
+ #endif
65
+
50
66
  //
51
67
  // look for long long by looking for the appropriate macros in <limits.h>.
52
68
  // Note that we use limits.h rather than climits for maximal portability,
@@ -668,6 +684,23 @@ namespace std{ using ::type_info; }
668
684
  # define BOOST_NORETURN
669
685
  #endif
670
686
 
687
+ // BOOST_DEPRECATED -------------------------------------------//
688
+ // The macro can be used to mark deprecated symbols, such as functions, objects and types.
689
+ // Any code that uses these symbols will produce warnings, possibly with a message specified
690
+ // as an argument. The warnings can be suppressed by defining BOOST_ALLOW_DEPRECATED_SYMBOLS
691
+ // or BOOST_ALLOW_DEPRECATED.
692
+ #if !defined(BOOST_DEPRECATED) && __cplusplus >= 201402
693
+ #define BOOST_DEPRECATED(msg) [[deprecated(msg)]]
694
+ #endif
695
+
696
+ #if defined(BOOST_ALLOW_DEPRECATED_SYMBOLS) || defined(BOOST_ALLOW_DEPRECATED)
697
+ #undef BOOST_DEPRECATED
698
+ #endif
699
+
700
+ #if !defined(BOOST_DEPRECATED)
701
+ #define BOOST_DEPRECATED(msg)
702
+ #endif
703
+
671
704
  // Branch prediction hints
672
705
  // These macros are intended to wrap conditional expressions that yield true or false
673
706
  //
@@ -17,7 +17,7 @@
17
17
 
18
18
  #include <boost/config/pragma_message.hpp>
19
19
 
20
- #if defined(BOOST_ALLOW_DEPRECATED_HEADERS)
20
+ #if defined(BOOST_ALLOW_DEPRECATED_HEADERS) || defined(BOOST_ALLOW_DEPRECATED)
21
21
  # define BOOST_HEADER_DEPRECATED(a)
22
22
  #else
23
23
  # define BOOST_HEADER_DEPRECATED(a) BOOST_PRAGMA_MESSAGE("This header is deprecated. Use " a " instead.")
@@ -168,4 +168,13 @@
168
168
  # define BOOST_NO_CXX14_HDR_SHARED_MUTEX
169
169
  #endif
170
170
 
171
+ #if _LIBCPP_VERSION >= 15000
172
+ //
173
+ // Unary function is now deprecated in C++11 and later:
174
+ //
175
+ #if __cplusplus >= 201103L
176
+ #define BOOST_NO_CXX98_FUNCTION_BASE
177
+ #endif
178
+ #endif
179
+
171
180
  // --- end ---
@@ -139,7 +139,9 @@
139
139
  //
140
140
  #ifdef __clang__
141
141
 
142
- #if __has_include(<source_location>)
142
+ #if __has_include(<expected>)
143
+ # define BOOST_LIBSTDCXX_VERSION 120100
144
+ #elif __has_include(<source_location>)
143
145
  # define BOOST_LIBSTDCXX_VERSION 110100
144
146
  #elif __has_include(<compare>)
145
147
  # define BOOST_LIBSTDCXX_VERSION 100100
@@ -457,7 +459,7 @@ extern "C" char *gets (char *__s);
457
459
  # endif
458
460
  #endif
459
461
 
460
- #if (!defined(_GTHREAD_USE_MUTEX_TIMEDLOCK) || (_GTHREAD_USE_MUTEX_TIMEDLOCK == 0)) && !defined(BOOST_NO_CXX11_HDR_MUTEX)
462
+ #if (!defined(_GTHREAD_USE_MUTEX_TIMEDLOCK) || (_GTHREAD_USE_MUTEX_TIMEDLOCK == 0)) && !defined(BOOST_NO_CXX11_HDR_MUTEX) && (__GNUC__ < 6)
461
463
  // Timed mutexes are not always available:
462
464
  # define BOOST_NO_CXX11_HDR_MUTEX
463
465
  #endif
@@ -352,7 +352,7 @@ class allocator
352
352
  {
353
353
  std::size_t const preferred_size = prefer_in_recvd_out_size;
354
354
  dlmalloc_command_ret_t ret = {0 , 0};
355
- if((limit_size > this->max_size()) | (preferred_size > this->max_size())){
355
+ if((limit_size > this->max_size()) || (preferred_size > this->max_size())){
356
356
  return pointer();
357
357
  }
358
358
  std::size_t l_size = limit_size*sizeof(T);
@@ -186,6 +186,35 @@ template <class Key
186
186
  ,class Allocator = void >
187
187
  class flat_multimap;
188
188
 
189
+ //Experimental forward declarations, not implemented yet!
190
+ template <class Key
191
+ ,class Hash //= hash<Key>,
192
+ ,class Pred = std::equal_to<Key>
193
+ ,class Compare = std::less<Key>
194
+ ,class Allocator = void
195
+ ,class Options = void>
196
+ class hash_set;
197
+
198
+ template <class Key
199
+ ,class Compare = std::less<Key>
200
+ ,class Allocator = void
201
+ ,class Options = void >
202
+ class hash_multiset;
203
+
204
+ template <class Key
205
+ ,class T
206
+ ,class Compare = std::less<Key>
207
+ ,class Allocator = void
208
+ ,class Options = void >
209
+ class hash_map;
210
+
211
+ template <class Key
212
+ ,class T
213
+ ,class Compare = std::less<Key>
214
+ ,class Allocator = void
215
+ ,class Options = void >
216
+ class hash_multimap;
217
+
189
218
  #ifndef BOOST_NO_CXX11_TEMPLATE_ALIASES
190
219
 
191
220
  //! Alias templates for small_flat_[multi]{set|map} using small_vector as container
@@ -625,7 +625,7 @@ class deque : protected deque_base<typename real_allocator<T, Allocator>::type,
625
625
  BOOST_CONTAINER_FORCEINLINE explicit deque(size_type n)
626
626
  : Base(n, allocator_type())
627
627
  {
628
- dtl::insert_value_initialized_n_proxy<ValAllocator, iterator> proxy;
628
+ dtl::insert_value_initialized_n_proxy<ValAllocator> proxy;
629
629
  proxy.uninitialized_copy_n_and_update(this->alloc(), this->begin(), n);
630
630
  //deque_base will deallocate in case of exception...
631
631
  }
@@ -642,7 +642,7 @@ class deque : protected deque_base<typename real_allocator<T, Allocator>::type,
642
642
  BOOST_CONTAINER_FORCEINLINE deque(size_type n, default_init_t)
643
643
  : Base(n, allocator_type())
644
644
  {
645
- dtl::insert_default_initialized_n_proxy<ValAllocator, iterator> proxy;
645
+ dtl::insert_default_initialized_n_proxy<ValAllocator> proxy;
646
646
  proxy.uninitialized_copy_n_and_update(this->alloc(), this->begin(), n);
647
647
  //deque_base will deallocate in case of exception...
648
648
  }
@@ -657,7 +657,7 @@ class deque : protected deque_base<typename real_allocator<T, Allocator>::type,
657
657
  BOOST_CONTAINER_FORCEINLINE explicit deque(size_type n, const allocator_type &a)
658
658
  : Base(n, a)
659
659
  {
660
- dtl::insert_value_initialized_n_proxy<ValAllocator, iterator> proxy;
660
+ dtl::insert_value_initialized_n_proxy<ValAllocator> proxy;
661
661
  proxy.uninitialized_copy_n_and_update(this->alloc(), this->begin(), n);
662
662
  //deque_base will deallocate in case of exception...
663
663
  }
@@ -674,7 +674,7 @@ class deque : protected deque_base<typename real_allocator<T, Allocator>::type,
674
674
  BOOST_CONTAINER_FORCEINLINE deque(size_type n, default_init_t, const allocator_type &a)
675
675
  : Base(n, a)
676
676
  {
677
- dtl::insert_default_initialized_n_proxy<ValAllocator, iterator> proxy;
677
+ dtl::insert_default_initialized_n_proxy<ValAllocator> proxy;
678
678
  proxy.uninitialized_copy_n_and_update(this->alloc(), this->begin(), n);
679
679
  //deque_base will deallocate in case of exception...
680
680
  }
@@ -1181,7 +1181,7 @@ class deque : protected deque_base<typename real_allocator<T, Allocator>::type,
1181
1181
  this->priv_erase_last_n(len - new_size);
1182
1182
  else{
1183
1183
  const size_type n = new_size - this->size();
1184
- dtl::insert_value_initialized_n_proxy<ValAllocator, iterator> proxy;
1184
+ dtl::insert_value_initialized_n_proxy<ValAllocator> proxy;
1185
1185
  priv_insert_back_aux_impl(n, proxy);
1186
1186
  }
1187
1187
  }
@@ -1201,7 +1201,7 @@ class deque : protected deque_base<typename real_allocator<T, Allocator>::type,
1201
1201
  this->priv_erase_last_n(len - new_size);
1202
1202
  else{
1203
1203
  const size_type n = new_size - this->size();
1204
- dtl::insert_default_initialized_n_proxy<ValAllocator, iterator> proxy;
1204
+ dtl::insert_default_initialized_n_proxy<ValAllocator> proxy;
1205
1205
  priv_insert_back_aux_impl(n, proxy);
1206
1206
  }
1207
1207
  }
@@ -1463,7 +1463,7 @@ class deque : protected deque_base<typename real_allocator<T, Allocator>::type,
1463
1463
  return r;
1464
1464
  }
1465
1465
  else{
1466
- typedef dtl::insert_nonmovable_emplace_proxy<ValAllocator, iterator, Args...> type;
1466
+ typedef dtl::insert_nonmovable_emplace_proxy<ValAllocator, Args...> type;
1467
1467
  return *this->priv_insert_front_aux_impl(1, type(boost::forward<Args>(args)...));
1468
1468
  }
1469
1469
  }
@@ -1489,7 +1489,7 @@ class deque : protected deque_base<typename real_allocator<T, Allocator>::type,
1489
1489
  return r;
1490
1490
  }
1491
1491
  else{
1492
- typedef dtl::insert_nonmovable_emplace_proxy<ValAllocator, iterator, Args...> type;
1492
+ typedef dtl::insert_nonmovable_emplace_proxy<ValAllocator, Args...> type;
1493
1493
  return *this->priv_insert_back_aux_impl(1, type(boost::forward<Args>(args)...));
1494
1494
  }
1495
1495
  }
@@ -1516,7 +1516,7 @@ class deque : protected deque_base<typename real_allocator<T, Allocator>::type,
1516
1516
  return (this->end()-1);
1517
1517
  }
1518
1518
  else{
1519
- typedef dtl::insert_emplace_proxy<ValAllocator, iterator, Args...> type;
1519
+ typedef dtl::insert_emplace_proxy<ValAllocator, Args...> type;
1520
1520
  return this->priv_insert_aux_impl(p, 1, type(boost::forward<Args>(args)...));
1521
1521
  }
1522
1522
  }
@@ -1536,7 +1536,7 @@ class deque : protected deque_base<typename real_allocator<T, Allocator>::type,
1536
1536
  }\
1537
1537
  else{\
1538
1538
  typedef dtl::insert_nonmovable_emplace_proxy##N\
1539
- <ValAllocator, iterator BOOST_MOVE_I##N BOOST_MOVE_TARG##N> type;\
1539
+ <ValAllocator BOOST_MOVE_I##N BOOST_MOVE_TARG##N> type;\
1540
1540
  return *priv_insert_front_aux_impl(1, type(BOOST_MOVE_FWD##N));\
1541
1541
  }\
1542
1542
  }\
@@ -1553,7 +1553,7 @@ class deque : protected deque_base<typename real_allocator<T, Allocator>::type,
1553
1553
  }\
1554
1554
  else{\
1555
1555
  typedef dtl::insert_nonmovable_emplace_proxy##N\
1556
- <ValAllocator, iterator BOOST_MOVE_I##N BOOST_MOVE_TARG##N> type;\
1556
+ <ValAllocator BOOST_MOVE_I##N BOOST_MOVE_TARG##N> type;\
1557
1557
  return *priv_insert_back_aux_impl(1, type(BOOST_MOVE_FWD##N));\
1558
1558
  }\
1559
1559
  }\
@@ -1572,7 +1572,7 @@ class deque : protected deque_base<typename real_allocator<T, Allocator>::type,
1572
1572
  }\
1573
1573
  else{\
1574
1574
  typedef dtl::insert_emplace_proxy_arg##N\
1575
- <ValAllocator, iterator BOOST_MOVE_I##N BOOST_MOVE_TARG##N> type;\
1575
+ <ValAllocator BOOST_MOVE_I##N BOOST_MOVE_TARG##N> type;\
1576
1576
  return this->priv_insert_aux_impl(p, 1, type(BOOST_MOVE_FWD##N));\
1577
1577
  }\
1578
1578
  }
@@ -1729,7 +1729,7 @@ class deque : protected deque_base<typename real_allocator<T, Allocator>::type,
1729
1729
  )
1730
1730
  {
1731
1731
  BOOST_ASSERT(this->priv_in_range_or_end(p));
1732
- dtl::insert_range_proxy<ValAllocator, FwdIt, iterator> proxy(first);
1732
+ dtl::insert_range_proxy<ValAllocator, FwdIt> proxy(first);
1733
1733
  return priv_insert_aux_impl(p, boost::container::iterator_udistance(first, last), proxy);
1734
1734
  }
1735
1735
  #endif