Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions examples/intro-timer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#define INCLUDED_EXAMPLES_INTRO_TIMER

#include <beman/execution/execution.hpp>
#include <chrono>
#include <queue>
#include <thread>
#include <tuple>
Expand Down
2 changes: 1 addition & 1 deletion include/beman/execution/detail/when_all.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ struct impls_for<::beman::execution::detail::when_all_t> : ::beman::execution::d
}

void complete(Receiver& recvr) noexcept {
switch (this->disp) {
switch (disposition(this->disp)) {
case disposition::started: {
auto tie = []<typename... T>(::std::tuple<T...>& t) noexcept {
return ::std::apply([](auto&... a) { return ::std::tie(a...); }, t);
Expand Down
Loading