Skip to content

Commit

Permalink
add comment linking to clang pack indexing bug report
Browse files Browse the repository at this point in the history
  • Loading branch information
ericniebler committed Nov 18, 2024
1 parent da8a830 commit 999a11e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/stdexec/__detail/__meta.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1043,7 +1043,8 @@ namespace stdexec {
using __f = __mor<__minvoke<_Fn, _Args>...>;
};

// test_transfer_when_all.cpp fails on clang-19 with pack indexing.
// C++23 pack indexing is disabled for clang because of
// https://github.com/llvm/llvm-project/issues/116105
#if defined(__cpp_pack_indexing) && !STDEXEC_CLANG()
template <class _Np, class... _Ts>
using __m_at = _Ts...[__v<_Np>];
Expand Down

0 comments on commit 999a11e

Please sign in to comment.