Skip to content

Commit

Permalink
remove class qualification in receiver_adaptor spec
Browse files Browse the repository at this point in the history
  • Loading branch information
ericniebler committed Mar 20, 2024
1 parent 77cf6ea commit 87adc76
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions execution.bs
Original file line number Diff line number Diff line change
Expand Up @@ -8319,7 +8319,7 @@ template<class Domain, class Tag, sender Sndr, class... Args>

<pre highlight="c++">
template&lt;class... Args>
void receiver_adaptor&lt;Derived, Base>::set_value(Args&&... args) && noexcept;
void set_value(Args&&... args) && noexcept;
</pre>

1. Let <i>`e`</i> be the expression
Expand All @@ -8331,7 +8331,7 @@ template&lt;class Domain, class Tag, sender Sndr, class... Args>

<pre highlight="c++">
template&lt;class Error>
void receiver_adaptor&lt;Derived, Base>::set_error(Error&& err) && noexcept;
void set_error(Error&& err) && noexcept;
</pre>

1. Let <i>`e`</i> be the expression
Expand All @@ -8342,7 +8342,7 @@ template&lt;class Domain, class Tag, sender Sndr, class... Args>
3. <i>Effects:</i> Equivalent to <i>`e`</i>.

<pre highlight="c++">
void receiver_adaptor&lt;Derived, Base>::set_stopped() && noexcept;
void set_stopped() && noexcept;
</pre>

1. Let <i>`e`</i> be the expression
Expand All @@ -8354,7 +8354,7 @@ template&lt;class Domain, class Tag, sender Sndr, class... Args>

<pre highlight="c++">
template&lt;class Self>
decltype(auto) receiver_adaptor&lt;Derived, Base>::<i>get-base</i>(this Self&& self) noexcept;
decltype(auto) <i>get-base</i>(this Self&& self) noexcept;
</pre>

1. Let <i>`e`</i> be the expression
Expand All @@ -8370,7 +8370,7 @@ template&lt;class Domain, class Tag, sender Sndr, class... Args>

<pre highlight="c++">
template&lt;class Self>
decltype(auto) receiver_adaptor&lt;Derived, Base>::base(this Self&& self) noexcept requires <i>HAS-BASE</i>;
decltype(auto) base(this Self&& self) noexcept requires <i>HAS-BASE</i>;
</pre>

1. Let <i>`e`</i> be the expression
Expand Down

0 comments on commit 87adc76

Please sign in to comment.