Files
eigen/Eigen/src/Core/arch
Andreas Krebbel 8faafc3aaa ZVector: Move alignas qualifier to come first
We currently have plenty of type definitions with the alignment
qualifier coming after the type.  The compiler warns about ignoring
them:
int EIGEN_ALIGN16 ai[4];

Turn this into:
EIGEN_ALIGN16 int ai[4];
2021-10-26 15:33:47 +02:00
..
2021-09-23 15:22:00 +00:00
2021-09-23 15:22:00 +00:00
2021-10-20 19:18:34 +00:00
2021-09-23 15:22:00 +00:00
2021-09-22 16:15:06 +00:00
2021-09-22 16:15:06 +00:00