aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/UnalignedArrayAssert.dox
diff options
context:
space:
mode:
Diffstat (limited to 'doc/UnalignedArrayAssert.dox')
-rw-r--r--doc/UnalignedArrayAssert.dox8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/UnalignedArrayAssert.dox b/doc/UnalignedArrayAssert.dox
index 8a001dfa3..64ac6432f 100644
--- a/doc/UnalignedArrayAssert.dox
+++ b/doc/UnalignedArrayAssert.dox
@@ -54,7 +54,7 @@ class Foo
Eigen::Vector2d v;
...
public:
- EIGEN_MAKE_ALIGNED_OPERATOR_NEW(Foo)
+ EIGEN_MAKE_ALIGNED_OPERATOR_NEW
};
...
@@ -144,7 +144,7 @@ class Foo
double x;
Eigen::Vector2d v;
public:
- EIGEN_MAKE_ALIGNED_OPERATOR_NEW(Foo)
+ EIGEN_MAKE_ALIGNED_OPERATOR_NEW
};
\endcode
@@ -156,7 +156,7 @@ class Foo
Eigen::Vector2d v;
double x;
public:
- EIGEN_MAKE_ALIGNED_OPERATOR_NEW(Foo)
+ EIGEN_MAKE_ALIGNED_OPERATOR_NEW
};
\endcode
@@ -183,7 +183,7 @@ template<int n> class Foo
Vector v;
...
public:
- EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF(Foo,NeedsToAlign)
+ EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF(NeedsToAlign)
};
...