From 87adc76a23abd357eb05bfa5fdb73b0caf6aa561 Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Wed, 20 Mar 2024 14:40:29 -0700 Subject: [PATCH] remove class qualification in receiver_adaptor spec --- execution.bs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/execution.bs b/execution.bs index 678c098..ea3f09f 100644 --- a/execution.bs +++ b/execution.bs @@ -8319,7 +8319,7 @@ template<class Domain, class Tag, sender Sndr, class... Args>
     template<class... Args>
-      void receiver_adaptor<Derived, Base>::set_value(Args&&... args) && noexcept;
+      void set_value(Args&&... args) && noexcept;
     
1. Let `e` be the expression @@ -8331,7 +8331,7 @@ template<class Domain, class Tag, sender Sndr, class... Args>
     template<class Error>
-      void receiver_adaptor<Derived, Base>::set_error(Error&& err) && noexcept;
+      void set_error(Error&& err) && noexcept;
     
1. Let `e` be the expression @@ -8342,7 +8342,7 @@ template<class Domain, class Tag, sender Sndr, class... Args> 3. Effects: Equivalent to `e`.
-    void receiver_adaptor<Derived, Base>::set_stopped() && noexcept;
+    void set_stopped() && noexcept;
     
1. Let `e` be the expression @@ -8354,7 +8354,7 @@ template<class Domain, class Tag, sender Sndr, class... Args>
     template<class Self>
-      decltype(auto) receiver_adaptor<Derived, Base>::get-base(this Self&& self) noexcept;
+      decltype(auto) get-base(this Self&& self) noexcept;
     
1. Let `e` be the expression @@ -8370,7 +8370,7 @@ template<class Domain, class Tag, sender Sndr, class... Args>
     template<class Self>
-      decltype(auto) receiver_adaptor<Derived, Base>::base(this Self&& self) noexcept requires HAS-BASE;
+      decltype(auto) base(this Self&& self) noexcept requires HAS-BASE;
     
1. Let `e` be the expression