Skip to content

Commit fa182de

Browse files
author
Johannes Keustermans
committed
Fix compilation error using Apple Clang (version 17.0.0).
1 parent d033684 commit fa182de

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-
#if defined(_MSC_VER) || (defined(__clang__) && __clang_major__ >= 19)
757+
#if defined(_MSC_VER) || (defined(__clang__) && __clang_major__ >= 19) || (defined(__APPLE__) && defined(__clang__) && __clang_major__ >= 17)
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)