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 @@ -1463,11 +1463,11 @@
Fun @\exposid{fun}@; // \expos
using type = @\exposid{call-result-t}@<Fun>;

constexpr operator type() && noexcept(@\exposid{nothrow-callable}@<Fun>) {
constexpr operator type() && noexcept(@\exposconcept{nothrow-callable}@<Fun>) {
return std::move(fun)();
}

constexpr type operator()() && noexcept(@\exposid{nothrow-callable}@<Fun>) {
constexpr type operator()() && noexcept(@\exposconcept{nothrow-callable}@<Fun>) {
return std::move(fun)();
}
};
Expand Down Expand Up @@ -1730,7 +1730,7 @@
the constructor of \exposid{basic-state} is:
\begin{codeblock}
is_nothrow_move_constructible_v<Rcvr> &&
@\exposid{nothrow-callable}@<decltype(@\exposid{impls-for}@<tag_of_t<Sndr>>::@\exposid{get-state}@), Sndr, Rcvr&>
@\exposconcept{nothrow-callable}@<decltype(@\exposid{impls-for}@<tag_of_t<Sndr>>::@\exposid{get-state}@), Sndr, Rcvr&>
\end{codeblock}

\pnum
Expand Down