@@ -224,17 +224,17 @@ namespace stdexec {
224224 }
225225 };
226226
227- struct get_domain_late_t {
227+ struct get_domain_override_t {
228228 template <class _Ty >
229- requires tag_invocable<get_domain_late_t , const _Ty&>
229+ requires tag_invocable<get_domain_override_t , const _Ty&>
230230 constexpr auto operator ()(const _Ty&) const noexcept
231- -> __decay_t<tag_invoke_result_t<get_domain_late_t , const _Ty&>> {
231+ -> __decay_t<tag_invoke_result_t<get_domain_override_t , const _Ty&>> {
232232 static_assert (
233- nothrow_tag_invocable<get_domain_late_t , const _Ty&>,
234- " Customizations of get_domain_late must be noexcept." );
233+ nothrow_tag_invocable<get_domain_override_t , const _Ty&>,
234+ " Customizations of get_domain_override must be noexcept." );
235235 static_assert (
236- __class<__decay_t <tag_invoke_result_t <get_domain_late_t , const _Ty&>>>,
237- " Customizations of get_domain_late must return a class type." );
236+ __class<__decay_t <tag_invoke_result_t <get_domain_override_t , const _Ty&>>>,
237+ " Customizations of get_domain_override must return a class type." );
238238 return {};
239239 }
240240
@@ -296,7 +296,7 @@ namespace stdexec {
296296 using __queries::get_stop_token_t ;
297297 using __queries::get_completion_scheduler_t ;
298298 using __queries::get_domain_t ;
299- using __queries::get_domain_late_t ;
299+ using __queries::get_domain_override_t ;
300300 using __queries::__is_scheduler_affine_t ;
301301 using __queries::__root_t ;
302302 using __queries::__root_env;
@@ -329,7 +329,7 @@ namespace stdexec {
329329 concept __forwarding_query = forwarding_query (_Tag{});
330330
331331 inline constexpr get_domain_t get_domain{};
332- inline constexpr get_domain_late_t get_domain_late {};
332+ inline constexpr get_domain_override_t get_domain_override {};
333333
334334 template <class _Tag , class _Queryable , class _Default >
335335 using __query_result_or_t = __call_result_t <query_or_t , _Tag, _Queryable, _Default>;
@@ -688,7 +688,7 @@ namespace stdexec {
688688 return {};
689689 }
690690
691- constexpr auto query (get_domain_late_t ) const noexcept -> _LateDomain
691+ constexpr auto query (get_domain_override_t ) const noexcept -> _LateDomain
692692 requires(!same_as<_LateDomain, __none_such>)
693693 {
694694 return {};
0 commit comments