File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
include/proxsuite/linalg/veg Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66
77## [ Unreleased]
88
9+ ### Fixed
10+ * Fix an arcane compilation issue on Clang-19 ([ #379 ] ( https://github.com/Simple-Robotics/proxsuite/pull/379 ) )
11+
912## [ 0.7.1] - 2025-01-28
1013
1114### Fixed
Original file line number Diff line number Diff 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))...));
You can’t perform that action at this time.
0 commit comments