EIGEN_MAKE_ALIGNED_OPERATOR_NEW didn't actually need to get the class
name as parameter
diff --git a/test/dynalloc.cpp b/test/dynalloc.cpp
index d829008..916193d 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 @@
 class MyClassA
 {
   public:
-    EIGEN_MAKE_ALIGNED_OPERATOR_NEW(MyClassA)
+    EIGEN_MAKE_ALIGNED_OPERATOR_NEW
     char dummychar;
     Vector4f avec;
 };