Skip to content

Commit 8074c26

Browse files
clang-format
1 parent 3a083ed commit 8074c26

File tree

1 file changed

+2
-2
lines changed
  • libcxx/include/__algorithm

1 file changed

+2
-2
lines changed

libcxx/include/__algorithm/fill.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ __fill(_RandomAccessIterator __first, _RandomAccessIterator __last, const _Tp& _
4646
template <class _SegmentedIterator,
4747
class _Tp,
4848
__enable_if_t<__is_segmented_iterator_v<_SegmentedIterator>, int> = 0>
49-
inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _SegmentedIterator
50-
__fill(_SegmentedIterator __first, _SegmentedIterator __last, const _Tp& __value) {
49+
inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20
50+
_SegmentedIterator __fill(_SegmentedIterator __first, _SegmentedIterator __last, const _Tp& __value) {
5151
using __local_iterator_t = typename __segmented_iterator_traits<_SegmentedIterator>::__local_iterator;
5252
std::__for_each_segment(__first, __last, [&](__local_iterator_t __lfirst, __local_iterator_t __llast) {
5353
std::__fill(__lfirst, __llast, __value);

0 commit comments

Comments
 (0)