@@ -236,20 +236,18 @@ _LIBCPP_CTAD_SUPPORTED_FOR_TYPE(allocation_result);
236236
237237template <class _Alloc >
238238struct _LIBCPP_TEMPLATE_VIS allocator_traits {
239- using allocator_type = _Alloc;
240- using value_type = typename allocator_type::value_type;
241- using pointer = __pointer<value_type, allocator_type>;
242- using const_pointer = typename __const_pointer<value_type, pointer, allocator_type>::type;
243- using void_pointer = typename __void_pointer<pointer, allocator_type>::type;
244- using const_void_pointer = typename __const_void_pointer<pointer, allocator_type>::type;
245- using difference_type = typename __alloc_traits_difference_type<allocator_type, pointer>::type;
246- using size_type = __size_type<allocator_type, difference_type>;
247- using propagate_on_container_copy_assignment =
248- __propagate_on_container_copy_assignment<allocator_type>;
249- using propagate_on_container_move_assignment =
250- __propagate_on_container_move_assignment<allocator_type>;
251- using propagate_on_container_swap = __propagate_on_container_swap<allocator_type>;
252- using is_always_equal = __is_always_equal<allocator_type>;
239+ using allocator_type = _Alloc;
240+ using value_type = typename allocator_type::value_type;
241+ using pointer = __pointer<value_type, allocator_type>;
242+ using const_pointer = typename __const_pointer<value_type, pointer, allocator_type>::type;
243+ using void_pointer = typename __void_pointer<pointer, allocator_type>::type;
244+ using const_void_pointer = typename __const_void_pointer<pointer, allocator_type>::type;
245+ using difference_type = typename __alloc_traits_difference_type<allocator_type, pointer>::type;
246+ using size_type = __size_type<allocator_type, difference_type>;
247+ using propagate_on_container_copy_assignment = __propagate_on_container_copy_assignment<allocator_type>;
248+ using propagate_on_container_move_assignment = __propagate_on_container_move_assignment<allocator_type>;
249+ using propagate_on_container_swap = __propagate_on_container_swap<allocator_type>;
250+ using is_always_equal = __is_always_equal<allocator_type>;
253251
254252#ifndef _LIBCPP_CXX03_LANG
255253 template <class _Tp >
0 commit comments