Skip to content

Commit 42df75e

Browse files
committed
fix formatting
1 parent 1c997ac commit 42df75e

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

include/stdexec/__detail/__completion_info.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ namespace STDEXEC
5757
, __signature(__mtypeid<_Tag(_Args...)>)
5858
, __domain(__domain)
5959
, __behavior(__behavior)
60-
{ }
60+
{}
6161

6262
template <class _Sender, class... _Env>
6363
constexpr auto __populate() noexcept -> __completion_info &

include/stdexec/__detail/__receivers.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ namespace STDEXEC
380380
&& __std::constructible_from<__decay_t<_Receiver>, _Receiver>;
381381

382382
struct _THE_RECEIVER_DOES_NOT_ACCEPT_ALL_OF_THE_SENDERS_COMPLETION_SIGNALS_
383-
{ };
383+
{};
384384

385385
namespace __detail
386386
{
@@ -484,15 +484,15 @@ namespace STDEXEC
484484
template <class... _Args>
485485
STDEXEC_ATTRIBUTE(host, device)
486486
constexpr void set_value(_Args &&...) noexcept
487-
{ }
487+
{}
488488

489489
template <class _Error>
490490
STDEXEC_ATTRIBUTE(host, device)
491491
constexpr void set_error(_Error &&) noexcept
492-
{ }
492+
{}
493493

494494
STDEXEC_ATTRIBUTE(host, device)
495-
constexpr void set_stopped() noexcept { }
495+
constexpr void set_stopped() noexcept {}
496496
};
497497

498498
template <class _Env>

include/stdexec/__detail/__tuple.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ namespace STDEXEC
7777

7878
template <class... _Ts>
7979
struct __tuple : __tup::__tupl_base<__make_indices<sizeof...(_Ts)>, _Ts...>
80-
{ };
80+
{};
8181

8282
template <>
8383
struct __tuple<>

include/stdexec/__detail/__variant.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ namespace STDEXEC
4848
#endif
4949

5050
struct __monostate
51-
{ };
51+
{};
5252

5353
struct __visit_t
5454
{
@@ -102,7 +102,7 @@ namespace STDEXEC
102102
{
103103
public:
104104
STDEXEC_ATTRIBUTE(host, device)
105-
constexpr __variant(__no_init_t) noexcept { }
105+
constexpr __variant(__no_init_t) noexcept {}
106106

107107
template <class _Fn, class... _Us>
108108
STDEXEC_ATTRIBUTE(host, device)
@@ -169,7 +169,7 @@ namespace STDEXEC
169169

170170
// Construct into the valueless state:
171171
STDEXEC_ATTRIBUTE(host, device)
172-
constexpr explicit __variant(__no_init_t) noexcept { }
172+
constexpr explicit __variant(__no_init_t) noexcept {}
173173

174174
STDEXEC_ATTRIBUTE(host, device)
175175
constexpr __variant(__variant &&__other) noexcept(__nothrow_move_constructible<_Ts...>)

include/stdexec/coroutine.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ namespace STDEXEC
145145

146146
constexpr __coroutine_handle(__std::coroutine_handle<_Promise> __coro) noexcept
147147
: __coroutine_handle<>{__coro}
148-
{ }
148+
{}
149149

150150
[[nodiscard]]
151151
static constexpr auto from_promise(_Promise& __promise) noexcept -> __coroutine_handle
@@ -181,7 +181,7 @@ namespace STDEXEC
181181
__callback_fn_t* __resume_ = &__noop_fn;
182182
__callback_fn_t* __destroy_ = &__noop_fn;
183183

184-
static void __noop_fn(void*) noexcept { }
184+
static void __noop_fn(void*) noexcept {}
185185
};
186186

187187
static constexpr std::ptrdiff_t __coro_promise_offset = static_cast<std::ptrdiff_t>(

0 commit comments

Comments
 (0)