Skip to content

Commit 5443436

Browse files
author
Sai Charan
committed
fix errrors
1 parent 6ddf196 commit 5443436

4 files changed

Lines changed: 5 additions & 7 deletions

File tree

libs/core/algorithms/include/hpx/parallel/algorithms/for_each.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ namespace hpx::parallel {
347347
: f_(HPX_FORWARD(F_, f))
348348
{
349349
// proj parameter is ignored in this specialization for hpx::identity
350-
(void)proj;
350+
(void) proj;
351351
}
352352

353353
#if !defined(__NVCC__) && !defined(__CUDACC__)

libs/core/execution_base/include/hpx/execution_base/stdexec_forward.hpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ namespace hpx::execution::experimental {
133133
// Continue on
134134
using stdexec::continue_on;
135135
using stdexec::continue_on_t;
136-
137136
// Backward compatibility alias for continues_on
138137
inline constexpr stdexec::continue_on_t continues_on{};
139138
using continues_on_t = stdexec::continue_on_t;
@@ -156,12 +155,10 @@ namespace hpx::execution::experimental {
156155
using stdexec::parallel_policy;
157156
using stdexec::parallel_unsequenced_policy;
158157
using stdexec::unsequenced_policy;
159-
160158
using stdexec::seq;
161159
using stdexec::par;
162160
using stdexec::par_unseq;
163161
using stdexec::unseq;
164-
165162
using stdexec::is_execution_policy;
166163
using stdexec::is_execution_policy_v;
167164

libs/core/executors/include/hpx/executors/explicit_scheduler_executor.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ namespace hpx::execution::experimental {
299299
when_all(keep_future(HPX_FORWARD(Future, predecessor)));
300300

301301
return transfer(HPX_MOVE(pre_req), exec.sched_) |
302-
bulk(shape,
302+
bulk(shape,
303303
hpx::bind_back(HPX_FORWARD(F, f), HPX_FORWARD(Ts, ts)...));
304304
}
305305
#endif

libs/core/executors/include/hpx/executors/scheduler_executor.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,8 +296,9 @@ namespace hpx::execution::experimental {
296296
auto pre_req =
297297
when_all(keep_future(HPX_FORWARD(Future, predecessor)));
298298

299-
auto loop = bulk(transfer(HPX_MOVE(pre_req), exec.sched_), hpx::util::size(shape),
300-
hpx::bind_back(HPX_FORWARD(F, f), HPX_FORWARD(Ts, ts)...));
299+
auto loop = bulk(transfer(HPX_MOVE(pre_req), exec.sched_),
300+
hpx::util::size(shape),
301+
hpx::bind_back(HPX_FORWARD(F, f), HPX_FORWARD(Ts, ts)...));
301302

302303
return make_future(HPX_MOVE(loop));
303304
}

0 commit comments

Comments
 (0)