aboutsummaryrefslogtreecommitdiff
path: root/build2/scheduler.txx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/scheduler.txx')
-rw-r--r--build2/scheduler.txx8
1 files changed, 4 insertions, 4 deletions
diff --git a/build2/scheduler.txx b/build2/scheduler.txx
index fd1106b..127ce48 100644
--- a/build2/scheduler.txx
+++ b/build2/scheduler.txx
@@ -40,8 +40,8 @@ namespace build2
//
new (&td->data) task {
&task_count,
- decay_copy (forward <F> (f)),
- typename task::args_type (decay_copy (forward <A> (a))...)};
+ decay_copy (forward<F> (f)),
+ typename task::args_type (decay_copy (forward<A> (a))...)};
td->thunk = &task_thunk<F, A...>;
}
@@ -49,8 +49,8 @@ namespace build2
tq->stat_full++;
}
- // If serial/full, then run the task synchronously. In this case
- // there is no need to mess with task count.
+ // If serial/full, then run the task synchronously. In this case there is
+ // no need to mess with task count.
//
if (td == nullptr)
{