We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a5a227 commit 5e2c478Copy full SHA for 5e2c478
tests/beman/execution/exec-let.test.cpp
@@ -109,11 +109,8 @@ auto test_let_value_allocator() -> void {
109
}
110
111
auto test_let_value_env() -> void {
112
- ex::sync_wait(
113
- ex::just()
114
- | ex::let_value([]{ return ex::read_env(ex::get_scheduler); })
115
- | ex::then([](auto s){ static_assert(ex::scheduler<decltype(s)>); })
116
- );
+ ex::sync_wait(ex::just() | ex::let_value([] { return ex::read_env(ex::get_scheduler); }) |
+ ex::then([](auto s) { static_assert(ex::scheduler<decltype(s)>); }));
117
118
} // namespace
119
0 commit comments