@@ -1353,9 +1353,8 @@ template <class _Key,
13531353 class _Allocator = allocator<pair<const _Key, _Tp>>,
13541354 class = enable_if_t <!__is_allocator<_Compare>::value, void >,
13551355 class = enable_if_t <__is_allocator<_Allocator>::value, void >>
1356- map (initializer_list<pair<_Key, _Tp>>,
1357- _Compare = _Compare(),
1358- _Allocator = _Allocator()) -> map<remove_const_t<_Key>, _Tp, _Compare, _Allocator>;
1356+ map (initializer_list<pair<_Key, _Tp>>, _Compare = _Compare(), _Allocator = _Allocator())
1357+ -> map<remove_const_t<_Key>, _Tp, _Compare, _Allocator>;
13591358
13601359template <class _InputIterator ,
13611360 class _Allocator ,
@@ -1374,8 +1373,8 @@ map(from_range_t, _Range&&, _Allocator)
13741373# endif
13751374
13761375template <class _Key , class _Tp , class _Allocator , class = enable_if_t <__is_allocator<_Allocator>::value, void >>
1377- map (initializer_list<pair<_Key, _Tp>>,
1378- _Allocator) -> map<remove_const_t<_Key>, _Tp, less<remove_const_t<_Key>>, _Allocator>;
1376+ map (initializer_list<pair<_Key, _Tp>>, _Allocator)
1377+ -> map<remove_const_t<_Key>, _Tp, less<remove_const_t<_Key>>, _Allocator>;
13791378# endif
13801379
13811380# ifndef _LIBCPP_CXX03_LANG
@@ -1911,9 +1910,8 @@ template <class _Key,
19111910 class _Allocator = allocator<pair<const _Key, _Tp>>,
19121911 class = enable_if_t <!__is_allocator<_Compare>::value, void >,
19131912 class = enable_if_t <__is_allocator<_Allocator>::value, void >>
1914- multimap (initializer_list<pair<_Key, _Tp>>,
1915- _Compare = _Compare(),
1916- _Allocator = _Allocator()) -> multimap<remove_const_t<_Key>, _Tp, _Compare, _Allocator>;
1913+ multimap (initializer_list<pair<_Key, _Tp>>, _Compare = _Compare(), _Allocator = _Allocator())
1914+ -> multimap<remove_const_t<_Key>, _Tp, _Compare, _Allocator>;
19171915
19181916template <class _InputIterator ,
19191917 class _Allocator ,
@@ -1932,8 +1930,8 @@ multimap(from_range_t, _Range&&, _Allocator)
19321930# endif
19331931
19341932template <class _Key , class _Tp , class _Allocator , class = enable_if_t <__is_allocator<_Allocator>::value, void >>
1935- multimap (initializer_list<pair<_Key, _Tp>>,
1936- _Allocator) -> multimap<remove_const_t<_Key>, _Tp, less<remove_const_t<_Key>>, _Allocator>;
1933+ multimap (initializer_list<pair<_Key, _Tp>>, _Allocator)
1934+ -> multimap<remove_const_t<_Key>, _Tp, less<remove_const_t<_Key>>, _Allocator>;
19371935# endif
19381936
19391937# ifndef _LIBCPP_CXX03_LANG
0 commit comments