We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0242ad9 + 9eaea5c commit aee595eCopy full SHA for aee595e
include/stdexec/__detail/__bulk.hpp
@@ -206,7 +206,7 @@ namespace stdexec {
206
template <integral _Shape, copy_constructible _Fun>
207
[[deprecated("The bulk algorithm now requires an execution policy such as stdexec::par as an argument.")]]
208
STDEXEC_ATTRIBUTE((always_inline)) auto operator()(_Shape __shape, _Fun __fun) const {
209
- return (*this)(static_cast<_Shape&&>(__shape), static_cast<_Fun&&>(__fun));
+ return (*this)(par, static_cast<_Shape&&>(__shape), static_cast<_Fun&&>(__fun));
210
}
211
};
212
0 commit comments