diff options
| author | Nikolas Klauser <nikolasklauser@berlin.de> | 2022-07-05 10:13:38 +0200 |
|---|---|---|
| committer | Nikolas Klauser <nikolasklauser@berlin.de> | 2022-07-05 10:19:21 +0200 |
| commit | 0d0bd17fcfbd40b0cbb72ce0c59d2491d5da0bca (patch) | |
| tree | d105b3543084a34b4a8040a8e7a2f4d522ba4614 /libcxx/include/__split_buffer | |
| parent | 00927334df9a8133a5112c0450349d546373316f (diff) | |
[libc++] Fix __split_buffer::__construct_at_end definition to match declaration
Diffstat (limited to 'libcxx/include/__split_buffer')
| -rw-r--r-- | libcxx/include/__split_buffer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/__split_buffer b/libcxx/include/__split_buffer index eb78c9c4c0ac..7409b51b1f96 100644 --- a/libcxx/include/__split_buffer +++ b/libcxx/include/__split_buffer @@ -230,7 +230,7 @@ __split_buffer<_Tp, _Allocator>::__construct_at_end(size_type __n, const_referen template <class _Tp, class _Allocator> template <class _InputIter> -__enable_if_t<__is_cpp17_input_iterator<_InputIter>::value && !__is_cpp17_forward_iterator<_InputIter>::value> +__enable_if_t<__is_exactly_cpp17_input_iterator<_InputIter>::value> __split_buffer<_Tp, _Allocator>::__construct_at_end(_InputIter __first, _InputIter __last) { __alloc_rr& __a = this->__alloc(); |
