Skip to content

Commit bfddc5f

Browse files
committed
Disable pack indexing for Clang
test_transfer_when_all.cpp fails on commit 15dcdbc with Clang 19.1.4.
1 parent f4b9fa1 commit bfddc5f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/stdexec/__detail/__meta.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1043,7 +1043,8 @@ namespace stdexec {
10431043
using __f = __mor<__minvoke<_Fn, _Args>...>;
10441044
};
10451045

1046-
#if defined(__cpp_pack_indexing)
1046+
// test_transfer_when_all.cpp fails on clang-19 with pack indexing.
1047+
#if defined(__cpp_pack_indexing) && !STDEXEC_CLANG()
10471048
template <class _Np, class... _Ts>
10481049
using __m_at = _Ts...[__v<_Np>];
10491050

0 commit comments

Comments
 (0)