Skip to content

Commit 301d230

Browse files
committed
[exec.task.scheduler] Fix formatting
1 parent f7b9712 commit 301d230

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

source/exec.tex

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7029,7 +7029,7 @@
70297029
\begin{codeblock}
70307030
namespace std::execution {
70317031
class @\libglobal{task_scheduler}@ {
7032-
class @\exposidnc{ts-domain}@; // \expos
7032+
class @\exposid{ts-domain}@; // \expos
70337033

70347034
template<@\libconcept{scheduler}@ Sch>
70357035
class @\exposid{backend-for}@; // \expos
@@ -7038,20 +7038,17 @@
70387038
using scheduler_concept = scheduler_t;
70397039

70407040
template<class Sch, class Allocator = allocator<void>>
7041-
requires (!@\libconcept{same_as}@<task_scheduler, remove_cvref_t<Sch>>)
7042-
&& @\libconcept{scheduler}@<Sch>
7041+
requires (!@\libconcept{same_as}@<task_scheduler, remove_cvref_t<Sch>>) && @\libconcept{scheduler}@<Sch>
70437042
explicit task_scheduler(Sch&& sch, Allocator alloc = {});
70447043

70457044
task_scheduler(const task_scheduler&) = default;
70467045
task_scheduler& operator=(const task_scheduler&) = default;
70477046

70487047
@\seebelow@ schedule();
70497048

7050-
friend bool operator==(const task_scheduler& lhs, const task_scheduler& rhs)
7051-
noexcept;
7049+
friend bool operator==(const task_scheduler& lhs, const task_scheduler& rhs) noexcept;
70527050
template<class Sch>
7053-
requires (!@\libconcept{same_as}@<task_scheduler, Sch>)
7054-
&& @\libconcept{scheduler}@<Sch>
7051+
requires (!@\libconcept{same_as}@<task_scheduler, Sch>) && @\libconcept{scheduler}@<Sch>
70557052
friend bool operator==(const task_scheduler& lhs, const Sch& rhs) noexcept;
70567053

70577054
private:

0 commit comments

Comments
 (0)