diff options
Diffstat (limited to 'libcxx/include/__algorithm/copy_n.h')
| -rw-r--r-- | libcxx/include/__algorithm/copy_n.h | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/libcxx/include/__algorithm/copy_n.h b/libcxx/include/__algorithm/copy_n.h index b08bbdfb9b7e..f3701662aac3 100644 --- a/libcxx/include/__algorithm/copy_n.h +++ b/libcxx/include/__algorithm/copy_n.h @@ -12,8 +12,8 @@  #include <__algorithm/copy.h>  #include <__config>  #include <__iterator/iterator_traits.h> +#include <__type_traits/enable_if.h>  #include <__utility/convert_to_integral.h> -#include <type_traits>  #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)  #  pragma GCC system_header @@ -25,8 +25,8 @@ template<class _InputIterator, class _Size, class _OutputIterator>  inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX20  typename enable_if  < -    __is_cpp17_input_iterator<_InputIterator>::value && -   !__is_cpp17_random_access_iterator<_InputIterator>::value, +    __has_input_iterator_category<_InputIterator>::value && +   !__has_random_access_iterator_category<_InputIterator>::value,      _OutputIterator  >::type  copy_n(_InputIterator __first, _Size __orig_n, _OutputIterator __result) @@ -51,7 +51,7 @@ template<class _InputIterator, class _Size, class _OutputIterator>  inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX20  typename enable_if  < -    __is_cpp17_random_access_iterator<_InputIterator>::value, +    __has_random_access_iterator_category<_InputIterator>::value,      _OutputIterator  >::type  copy_n(_InputIterator __first, _Size __orig_n, _OutputIterator __result) | 
