Skip to content

Commit

Permalink
make adl isolation of tbb_thread_pool consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
ericniebler committed Jan 5, 2024
1 parent 6467e29 commit bd46fec
Show file tree
Hide file tree
Showing 2 changed files with 211 additions and 204 deletions.
4 changes: 2 additions & 2 deletions include/stdexec/__detail/__meta.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ namespace stdexec {
concept __has_id = requires { typename _Ty::__id; };

template <class _Ty>
struct _Yp {
struct _Id {
using __t = _Ty;

// Uncomment the line below to find any code that likely misuses the
Expand All @@ -707,7 +707,7 @@ namespace stdexec {
template <>
struct __id_<false> {
template <class _Ty>
using __f = _Yp<_Ty>;
using __f = _Id<_Ty>;
};
template <class _Ty>
using __id = __minvoke<__id_<__has_id<_Ty>>, _Ty>;
Expand Down
Loading

0 comments on commit bd46fec

Please sign in to comment.