Skip to content

Commit

Permalink
[libc++] Fix __split_buffer::__construct_at_end definition to match d…
Browse files Browse the repository at this point in the history
…eclaration
  • Loading branch information
philnik777 committed Jul 5, 2022
1 parent 0092733 commit 0d0bd17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcxx/include/__split_buffer
Expand Up @@ -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();
Expand Down

0 comments on commit 0d0bd17

Please sign in to comment.