Skip to content

Commit 365a0ef

Browse files
ManifoldFRjcarpent
authored andcommitted
Fix an arcane bug on clang 19
1 parent ec035d6 commit 365a0ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/proxsuite/linalg/veg/tuple.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ struct cat
754754
proxsuite::linalg::veg::meta::false_type /*unused*/,
755755
Tuples&&... tups) VEG_NOEXCEPT -> Concat<Tuples...>
756756
{
757-
#ifdef _MSC_VER
757+
#if defined(_MSC_VER) || (defined(__clang__) && __clang_major__ >= 19)
758758
return cat::from_ref_to_result(
759759
Tag<proxsuite::linalg::veg::meta::type_sequence_cat<Tuple, Tuples...>>{},
760760
cat::apply(_detail::_tuple::tuple_fwd(VEG_FWD(tups))...));

0 commit comments

Comments
 (0)