Skip to content

Commit c6c43bc

Browse files
remove auto(x)
1 parent b6038a9 commit c6c43bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/beman/execution/detail/bulk.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ struct impls_for<bulk_t> : ::beman::execution::detail::default_impls {
6666
try {
6767
[&]() noexcept(nothrow) {
6868
for (decltype(s_type(shape)) i = 0; i < shape; i++) {
69-
f(auto(i), args...);
69+
f(s_type(i), args...);
7070
}
7171
Tag()(std::move(rcvr), std::forward<Args>(args)...);
7272
}();

0 commit comments

Comments
 (0)