Fix structured bindings checks and tests.

libeigen/eigen!2584
This commit is contained in:
Antonio Sánchez
2026-05-26 20:20:14 -07:00
committed by Rasmus Munk Larsen
parent 633c2229fc
commit 2671e63c87
4 changed files with 13 additions and 8 deletions
@@ -13,4 +13,7 @@
#include <tuple>
int main() { return static_cast<int>(std::tuple_size<Eigen::Array<double, ROWS, COLS>>::value); }
int main() {
(void)std::tuple_size<Eigen::Array<double, ROWS, COLS>>::value;
return 0; // Test should pass.
}