aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/dynalloc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/dynalloc.cpp')
-rw-r--r--test/dynalloc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dynalloc.cpp b/test/dynalloc.cpp
index d829008d5..916193df0 100644
--- a/test/dynalloc.cpp
+++ b/test/dynalloc.cpp
@@ -27,7 +27,7 @@
// test compilation with both a struct and a class...
struct MyStruct
{
- EIGEN_MAKE_ALIGNED_OPERATOR_NEW(MyStruct)
+ EIGEN_MAKE_ALIGNED_OPERATOR_NEW
char dummychar;
Vector4f avec;
};
@@ -35,7 +35,7 @@ struct MyStruct
class MyClassA
{
public:
- EIGEN_MAKE_ALIGNED_OPERATOR_NEW(MyClassA)
+ EIGEN_MAKE_ALIGNED_OPERATOR_NEW
char dummychar;
Vector4f avec;
};