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/).
6
6
7
7
## [ Unreleased]
8
8
9
+ ### Fixed
10
+ * Fix an arcane compilation issue on Clang-19 ([ #379 ] ( https://github.com/Simple-Robotics/proxsuite/pull/379 ) )
11
+
9
12
## [ 0.7.1] - 2025-01-28
10
13
11
14
### Fixed
Original file line number Diff line number Diff line change @@ -754,7 +754,7 @@ struct cat
754
754
proxsuite::linalg::veg::meta::false_type /* unused*/ ,
755
755
Tuples&&... tups) VEG_NOEXCEPT -> Concat<Tuples...>
756
756
{
757
- #ifdef _MSC_VER
757
+ #if defined( _MSC_VER) || (defined(__clang__) && __clang_major__ >= 19)
758
758
return cat::from_ref_to_result (
759
759
Tag<proxsuite::linalg::veg::meta::type_sequence_cat<Tuple, Tuples...>>{},
760
760
cat::apply (_detail::_tuple::tuple_fwd (VEG_FWD (tups))...));
You can’t perform that action at this time.
0 commit comments