aboutsummaryrefslogtreecommitdiff
path: root/libcxx/include/list
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/include/list')
-rw-r--r--libcxx/include/list6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/include/list b/libcxx/include/list
index 5d80675..996dbfd 100644
--- a/libcxx/include/list
+++ b/libcxx/include/list
@@ -1000,16 +1000,16 @@ private:
# if _LIBCPP_STD_VER >= 17
template <class _InputIterator,
- class _Alloc = allocator<__iter_value_type<_InputIterator>>,
+ class _Alloc = allocator<__iterator_value_type<_InputIterator>>,
class = enable_if_t<__has_input_iterator_category<_InputIterator>::value>,
class = enable_if_t<__is_allocator_v<_Alloc>>>
-list(_InputIterator, _InputIterator) -> list<__iter_value_type<_InputIterator>, _Alloc>;
+list(_InputIterator, _InputIterator) -> list<__iterator_value_type<_InputIterator>, _Alloc>;
template <class _InputIterator,
class _Alloc,
class = enable_if_t<__has_input_iterator_category<_InputIterator>::value>,
class = enable_if_t<__is_allocator_v<_Alloc>>>
-list(_InputIterator, _InputIterator, _Alloc) -> list<__iter_value_type<_InputIterator>, _Alloc>;
+list(_InputIterator, _InputIterator, _Alloc) -> list<__iterator_value_type<_InputIterator>, _Alloc>;
# endif
# if _LIBCPP_STD_VER >= 23