aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/unalignedassert.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-01-08 15:37:13 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-01-08 15:37:13 +0000
commiteb7dcbbfce3b82f03722eea9065cc0a6d37e9fc1 (patch)
treee1b05844d7a1c0ea058ee13dc199fa475f436da7 /test/unalignedassert.cpp
parent1d52bd4cad64d8d8662f40c11210b705351b43ab (diff)
EIGEN_MAKE_ALIGNED_OPERATOR_NEW didn't actually need to get the class
name as parameter
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;
};