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
9 changes: 3 additions & 6 deletions source/support.tex
Original file line number Diff line number Diff line change
Expand Up @@ -5794,8 +5794,7 @@
\begin{codeblock}
namespace std {
template<>
struct coroutine_handle<void>
{
struct coroutine_handle<void> {
// \ref{coroutine.handle.con}, construct/reset
constexpr coroutine_handle() noexcept;
constexpr coroutine_handle(nullptr_t) noexcept;
Expand All @@ -5819,8 +5818,7 @@
};

template<class Promise>
struct coroutine_handle
{
struct coroutine_handle {
// \ref{coroutine.handle.con}, construct/reset
constexpr coroutine_handle() noexcept;
constexpr coroutine_handle(nullptr_t) noexcept;
Expand Down Expand Up @@ -6132,8 +6130,7 @@
\begin{codeblock}
namespace std {
template<>
struct coroutine_handle<noop_coroutine_promise>
{
struct coroutine_handle<noop_coroutine_promise> {
// \ref{coroutine.handle.noop.conv}, conversion
constexpr operator coroutine_handle<>() const noexcept;

Expand Down
Loading