aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/UnalignedArrayAssert.dox
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-01-08 15:37:13 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-01-08 15:37:13 +0000
commiteb7dcbbfce3b82f03722eea9065cc0a6d37e9fc1 (patch)
treee1b05844d7a1c0ea058ee13dc199fa475f436da7 /doc/UnalignedArrayAssert.dox
parent1d52bd4cad64d8d8662f40c11210b705351b43ab (diff)
EIGEN_MAKE_ALIGNED_OPERATOR_NEW didn't actually need to get the class
name as parameter
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)
};
...