aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/geo_transformations.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2014-03-27 15:29:56 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2014-03-27 15:29:56 +0100
commit6f123d209e65a8cf324df53a9a7e87d8e4c47e9f (patch)
tree789ad2f3eebc83beda12488d1eeda148a25689b2 /test/geo_transformations.cpp
parent052aedd3943717500f47d1f034e2b3ac072cfe36 (diff)
Fix geo_* unit tests with respect to AVX
Diffstat (limited to 'test/geo_transformations.cpp')
-rw-r--r--test/geo_transformations.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/geo_transformations.cpp b/test/geo_transformations.cpp
index ee3030b5d..7d9080333 100644
--- a/test/geo_transformations.cpp
+++ b/test/geo_transformations.cpp
@@ -404,9 +404,9 @@ template<typename Scalar> void transform_alignment()
typedef Transform<Scalar,3,Projective,AutoAlign> Projective3a;
typedef Transform<Scalar,3,Projective,DontAlign> Projective3u;
- EIGEN_ALIGN16 Scalar array1[16];
- EIGEN_ALIGN16 Scalar array2[16];
- EIGEN_ALIGN16 Scalar array3[16+1];
+ EIGEN_ALIGN_DEFAULT Scalar array1[16];
+ EIGEN_ALIGN_DEFAULT Scalar array2[16];
+ EIGEN_ALIGN_DEFAULT Scalar array3[16+1];
Scalar* array3u = array3+1;
Projective3a *p1 = ::new(reinterpret_cast<void*>(array1)) Projective3a;