We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f42fee commit fe4cd10Copy full SHA for fe4cd10
libcxx/include/__algorithm/pstl.h
@@ -247,7 +247,7 @@ template <class _ExecutionPolicy,
247
enable_if_t<is_execution_policy_v<_RawPolicy>, int> = 0>
248
_LIBCPP_HIDE_FROM_ABI void
249
fill_n(_ExecutionPolicy&& __policy, _ForwardIterator __first, _Size __n, const _Tp& __value) {
250
- _LIBCPP_REQUIRE_CPP17_FORWARD_ITERATOR(_ForwardIterator, "fill_n requires ForwardIterators");
+ _LIBCPP_REQUIRE_CPP17_FORWARD_ITERATOR(_ForwardIterator, "fill_n requires a ForwardIterator");
251
using _Implementation = __pstl::__dispatch<__pstl::__fill_n, __pstl::__current_configuration, _RawPolicy>;
252
__pstl::__handle_exception<_Implementation>(
253
std::forward<_ExecutionPolicy>(__policy), std::move(__first), std::move(__n), __value);
0 commit comments