Skip to content

Commit b69ba18

Browse files
committed
Format libdispatch bulk changes
1 parent 0e21d95 commit b69ba18

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

include/exec/libdispatch_queue.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -537,8 +537,8 @@ namespace experimental::execution
537537

538538
bulk_op_state(libdispatch_queue &queue, Shape shape, Fun fun, CvSender &&sndr, Receiver rcvr)
539539
: shared_state_(std::move(rcvr), shape, fun)
540-
, inner_op_{STDEXEC::connect(static_cast<CvSender &&>(sndr),
541-
bulk_rcvr{shared_state_, queue})}
540+
, inner_op_{
541+
STDEXEC::connect(static_cast<CvSender &&>(sndr), bulk_rcvr{shared_state_, queue})}
542542
{}
543543

544544
void start() & noexcept

test/exec/test_libdispatch.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ namespace
3030
using sender_concept = STDEXEC::sender_tag;
3131

3232
template <class, class...>
33-
static consteval auto get_completion_signatures()
34-
-> STDEXEC::completion_signatures<STDEXEC::set_value_t(int)>
33+
static consteval auto
34+
get_completion_signatures() -> STDEXEC::completion_signatures<STDEXEC::set_value_t(int)>
3535
{
3636
return {};
3737
}

0 commit comments

Comments
 (0)