Fix some CI warnings and C++14 build regressions

libeigen/eigen!2539
This commit is contained in:
Florian Maurin
2026-05-14 15:27:57 -07:00
committed by Rasmus Munk Larsen
parent 1978788790
commit f6cfc07a2d
11 changed files with 55 additions and 60 deletions
+1 -2
View File
@@ -61,8 +61,7 @@ void basic_tuple_test() {
VERIFY_IS_EQUAL(tuple_impl::tuple_size<decltype(tuple3cat0)>::value, size_t(3));
auto singlecat = tuple_impl::tuple_cat(tuple3);
VERIFY_IS_EQUAL(tuple_impl::tuple_size<decltype(singlecat)>::value, size_t(3));
auto emptycat = tuple_impl::tuple_cat();
VERIFY_IS_EQUAL(tuple_impl::tuple_size<decltype(emptycat)>::value, size_t(0));
VERIFY_IS_EQUAL(tuple_impl::tuple_size<decltype(tuple_impl::tuple_cat())>::value, size_t(0));
auto tuple0cat1cat2cat3 = tuple_impl::tuple_cat(tuple0, tuple1, tuple2, tuple3);
VERIFY_IS_EQUAL(tuple_impl::tuple_size<decltype(tuple0cat1cat2cat3)>::value, size_t(6));