From eb7dcbbfce3b82f03722eea9065cc0a6d37e9fc1 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Thu, 8 Jan 2009 15:37:13 +0000 Subject: EIGEN_MAKE_ALIGNED_OPERATOR_NEW didn't actually need to get the class name as parameter --- test/unalignedassert.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/unalignedassert.cpp') 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 struct Depends { - EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF(Depends,Align) + EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF(Align) Vector2d m; float f; }; -- cgit v1.2.3