Skip to content

Commit

Permalink
remove the cursed __x utility
Browse files Browse the repository at this point in the history
fixes #944
  • Loading branch information
ericniebler committed Jan 5, 2024
1 parent c554a4d commit e4d1552
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions include/stdexec/__detail/__meta.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -673,16 +673,6 @@ namespace stdexec {
using __f = __minvoke<_Continuation, _Ts...>;
};

// For hiding a template type parameter from ADL
template <class _Ty>
struct _Xp {
using __t = struct _Up {
using __t = _Ty;
};
};
template <class _Ty>
using __x = __t<_Xp<_Ty>>;

template <class _Ty>
concept __has_id = requires { typename _Ty::__id; };

Expand Down

0 comments on commit e4d1552

Please sign in to comment.