File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
libcxx/include/__algorithm Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ template <class _ExecutionPolicy,
247
247
enable_if_t <is_execution_policy_v<_RawPolicy>, int > = 0 >
248
248
_LIBCPP_HIDE_FROM_ABI void
249
249
fill_n (_ExecutionPolicy&& __policy, _ForwardIterator __first, _Size __n, const _Tp& __value) {
250
- _LIBCPP_REQUIRE_CPP17_FORWARD_ITERATOR (_ForwardIterator, " fill_n requires ForwardIterators " );
250
+ _LIBCPP_REQUIRE_CPP17_FORWARD_ITERATOR (_ForwardIterator, " fill_n requires a ForwardIterator " );
251
251
using _Implementation = __pstl::__dispatch<__pstl::__fill_n, __pstl::__current_configuration, _RawPolicy>;
252
252
__pstl::__handle_exception<_Implementation>(
253
253
std::forward<_ExecutionPolicy>(__policy), std::move (__first), std::move (__n), __value);
You can’t perform that action at this time.
0 commit comments