aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-09-08 17:08:27 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-09-08 17:08:27 +0000
commitc41ceee7508965a9f571e6b67f3e396943c6376c (patch)
treebbabd9440c20d1d6e1703981f4409763ed75b1a5 /Eigen/src
parent31c33b9ed44b351127b7b4da317dc5ab69670b6f (diff)
2 typos
Diffstat (limited to 'Eigen/src')
-rw-r--r--Eigen/src/Core/util/Memory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/util/Memory.h b/Eigen/src/Core/util/Memory.h
index 734296e77..caf1d48ce 100644
--- a/Eigen/src/Core/util/Memory.h
+++ b/Eigen/src/Core/util/Memory.h
@@ -131,7 +131,7 @@ inline static int ei_alignmentOffset(const Scalar* ptr, int maxOffset)
* \endcode
* Here, the problem is that operator new is not aware of the compile time alignment requirement of the
* type Vector4f (and hence of the type Foo). Therefore "new Foo" does not necessarily returned a 16 bytes
- * aligned pointer. The purpose of the class WithAlignedOperatorNew is exacly to overcome this issue, by
+ * aligned pointer. The purpose of the class WithAlignedOperatorNew is exactly to overcome this issue, by
* overloading the operator new to return aligned data when the vectorization is enabled.
* Here is a similar safe example:
* \code