diff --git a/libcxx/include/map b/libcxx/include/map index e5085076faf02..5f906bb0106c1 100644 --- a/libcxx/include/map +++ b/libcxx/include/map @@ -1353,9 +1353,8 @@ template >, class = enable_if_t::value, void>, class = enable_if_t<__is_allocator<_Allocator>::value, void>> -map(initializer_list>, - _Compare = _Compare(), - _Allocator = _Allocator()) -> map, _Tp, _Compare, _Allocator>; +map(initializer_list>, _Compare = _Compare(), _Allocator = _Allocator()) + -> map, _Tp, _Compare, _Allocator>; template ::value, void>> -map(initializer_list>, - _Allocator) -> map, _Tp, less>, _Allocator>; +map(initializer_list>, _Allocator) + -> map, _Tp, less>, _Allocator>; # endif # ifndef _LIBCPP_CXX03_LANG @@ -1911,9 +1910,8 @@ template >, class = enable_if_t::value, void>, class = enable_if_t<__is_allocator<_Allocator>::value, void>> -multimap(initializer_list>, - _Compare = _Compare(), - _Allocator = _Allocator()) -> multimap, _Tp, _Compare, _Allocator>; +multimap(initializer_list>, _Compare = _Compare(), _Allocator = _Allocator()) + -> multimap, _Tp, _Compare, _Allocator>; template ::value, void>> -multimap(initializer_list>, - _Allocator) -> multimap, _Tp, less>, _Allocator>; +multimap(initializer_list>, _Allocator) + -> multimap, _Tp, less>, _Allocator>; # endif # ifndef _LIBCPP_CXX03_LANG diff --git a/libcxx/include/set b/libcxx/include/set index 6470894517fd8..81c3de7343ee5 100644 --- a/libcxx/include/set +++ b/libcxx/include/set @@ -925,15 +925,13 @@ template ::value, void>, class = enable_if_t<__is_allocator<_Allocator>::value, void>> -set(_InputIterator, - _InputIterator, - _Allocator) -> set<__iter_value_type<_InputIterator>, less<__iter_value_type<_InputIterator>>, _Allocator>; +set(_InputIterator, _InputIterator, _Allocator) + -> set<__iter_value_type<_InputIterator>, less<__iter_value_type<_InputIterator>>, _Allocator>; # if _LIBCPP_STD_VER >= 23 template ::value, void>> -set(from_range_t, - _Range&&, - _Allocator) -> set, less>, _Allocator>; +set(from_range_t, _Range&&, _Allocator) + -> set, less>, _Allocator>; # endif template ::value, void>> @@ -1373,9 +1371,8 @@ template , class = enable_if_t<__is_allocator<_Allocator>::value, void>, class = enable_if_t::value, void>> -multiset(initializer_list<_Key>, - _Compare = _Compare(), - _Allocator = _Allocator()) -> multiset<_Key, _Compare, _Allocator>; +multiset(initializer_list<_Key>, _Compare = _Compare(), _Allocator = _Allocator()) + -> multiset<_Key, _Compare, _Allocator>; template = 23 template ::value, void>> -multiset(from_range_t, - _Range&&, - _Allocator) -> multiset, less>, _Allocator>; +multiset(from_range_t, _Range&&, _Allocator) + -> multiset, less>, _Allocator>; # endif template ::value, void>> diff --git a/libcxx/include/stack b/libcxx/include/stack index 19d09373e23d1..985813fcf578a 100644 --- a/libcxx/include/stack +++ b/libcxx/include/stack @@ -315,14 +315,12 @@ template ::value, int> = 0, __enable_if_t<__is_allocator<_Alloc>::value, int> = 0> -stack(_InputIterator, - _InputIterator, - _Alloc) -> stack<__iter_value_type<_InputIterator>, deque<__iter_value_type<_InputIterator>, _Alloc>>; +stack(_InputIterator, _InputIterator, _Alloc) + -> stack<__iter_value_type<_InputIterator>, deque<__iter_value_type<_InputIterator>, _Alloc>>; template ::value, int> = 0> -stack(from_range_t, - _Range&&, - _Alloc) -> stack, deque, _Alloc>>; +stack(from_range_t, _Range&&, _Alloc) + -> stack, deque, _Alloc>>; # endif diff --git a/libcxx/include/unordered_map b/libcxx/include/unordered_map index 3c19d6f2a7f0d..43a2245c5acc0 100644 --- a/libcxx/include/unordered_map +++ b/libcxx/include/unordered_map @@ -2035,12 +2035,12 @@ template ::value>, class = enable_if_t::value>, class = enable_if_t<__is_allocator<_Allocator>::value>> -unordered_multimap( - initializer_list>, - typename allocator_traits<_Allocator>::size_type = 0, - _Hash = _Hash(), - _Pred = _Pred(), - _Allocator = _Allocator()) -> unordered_multimap, _Tp, _Hash, _Pred, _Allocator>; +unordered_multimap(initializer_list>, + typename allocator_traits<_Allocator>::size_type = 0, + _Hash = _Hash(), + _Pred = _Pred(), + _Allocator = _Allocator()) + -> unordered_multimap, _Tp, _Hash, _Pred, _Allocator>; template ::value>, class = enable_if_t::value>, class = enable_if_t<__is_allocator<_Allocator>::value>> -unordered_set( - from_range_t, - _Range&&, - typename allocator_traits<_Allocator>::size_type = 0, - _Hash = _Hash(), - _Pred = _Pred(), - _Allocator = _Allocator()) -> unordered_set, _Hash, _Pred, _Allocator>; // C++23 +unordered_set(from_range_t, + _Range&&, + typename allocator_traits<_Allocator>::size_type = 0, + _Hash = _Hash(), + _Pred = _Pred(), + _Allocator = _Allocator()) + -> unordered_set, _Hash, _Pred, _Allocator>; // C++23 # endif template