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 include/stdexec/__detail/__meta.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -414,9 +414,9 @@ namespace STDEXEC
template <template <class...> class _Fn, class... _Args>
using __mmemoize_q = __mmemoize<__q<_Fn>, _Args...>;

#if STDEXEC_GCC()
// GCC can not mangle builtins. __mangle_t introduces an
// indirection that hides the builtin from the mangler.
#if STDEXEC_GCC() || (STDEXEC_CLANG() && STDEXEC_CLANG_VERSION < 1800)
// GCC and Clang < 18 cannot mangle builtins. __mmangle_t introduces an indirection
// that hides the builtin from the mangler.
template <template <class...> class _Fn, class... _Args>
using __mmangle_t = __mmemoize_q<_Fn, _Args...>;
#else
Expand Down
Loading