From 105405a7da1864cd8986591045f6b96a557299a9 Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Wed, 4 Mar 2026 15:44:20 -0800 Subject: [PATCH] uglify type names in __config.hpp --- include/stdexec/__detail/__config.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/stdexec/__detail/__config.hpp b/include/stdexec/__detail/__config.hpp index ac7002a0d..11be7aafc 100644 --- a/include/stdexec/__detail/__config.hpp +++ b/include/stdexec/__detail/__config.hpp @@ -482,16 +482,16 @@ namespace STDEXEC::__std #if STDEXEC_HAS_BUILTIN(__remove_reference) namespace STDEXEC { - template - using __unref_t = __remove_reference(Ty); + template + using __unref_t = __remove_reference(_Ty); } // namespace STDEXEC # define STDEXEC_REMOVE_REFERENCE(...) STDEXEC::__unref_t<__VA_ARGS__> #elif STDEXEC_HAS_BUILTIN(__remove_reference_t) namespace STDEXEC { - template - using __unref_t = __remove_reference_t(Ty); + template + using __unref_t = __remove_reference_t(_Ty); } // namespace STDEXEC # define STDEXEC_REMOVE_REFERENCE(...) STDEXEC::__unref_t<__VA_ARGS__>