Skip to content
Merged
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
6 changes: 3 additions & 3 deletions source/exec.tex
Original file line number Diff line number Diff line change
Expand Up @@ -7431,9 +7431,9 @@
void uncaught_exception();
coroutine_handle<> unhandled_stopped();

void return_void(); // present only if \tcode{is_void_v<T>} is \tcode{true};
void return_void(); // present only if \tcode{is_void_v<T>} is \tcode{true}
template<class V>
void return_value(V&& value); // present only if \tcode{is_void_v<T>} is \tcode{false};
void return_value(V&& value); // present only if \tcode{is_void_v<T>} is \tcode{false}

template<class E>
@\unspec@ yield_value(with_error<E> error);
Expand All @@ -7456,7 +7456,7 @@
allocator_type @\exposidnc{alloc}@; // \expos
stop_source_type @\exposidnc{source}@; // \expos
stop_token_type @\exposidnc{token}@; // \expos
optional<T> @\exposidnc{result}@; // \expos; present only if \tcode{is_void_v<T>} is \tcode{false};
optional<T> @\exposidnc{result}@; // \expos; present only if \tcode{is_void_v<T>} is \tcode{false}
@\exposidnc{error-variant}@ @\exposidnc{errors}@; // \expos
};
}
Expand Down