aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/unalignedassert.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/unalignedassert.cpp')
-rw-r--r--test/unalignedassert.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unalignedassert.cpp b/test/unalignedassert.cpp
index 8e0486e92..cfb44dc84 100644
--- a/test/unalignedassert.cpp
+++ b/test/unalignedassert.cpp
@@ -57,14 +57,14 @@ struct Bad6
struct Good7
{
- EIGEN_MAKE_ALIGNED_OPERATOR_NEW(Good7)
+ EIGEN_MAKE_ALIGNED_OPERATOR_NEW
Vector2d m;
float f; // make the struct have sizeof%16!=0 to make it a little more tricky when we allow an array of 2 such objects
};
struct Good8
{
- EIGEN_MAKE_ALIGNED_OPERATOR_NEW(Good8)
+ EIGEN_MAKE_ALIGNED_OPERATOR_NEW
float f; // try the f at first -- the EIGEN_ALIGN_128 attribute of m should make that still work
Matrix4f m;
};
@@ -77,7 +77,7 @@ struct Good9
template<bool Align> struct Depends
{
- EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF(Depends,Align)
+ EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF(Align)
Vector2d m;
float f;
};