EIGEN_MAKE_ALIGNED_OPERATOR_NEW didn't actually need to get the class

name as parameter
This commit is contained in:
Benoit Jacob
2009-01-08 15:37:13 +00:00
parent 1d52bd4cad
commit eb7dcbbfce
12 changed files with 24 additions and 24 deletions

View File

@@ -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;
};