aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/MapBase.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-08-06 15:04:42 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-08-06 15:04:42 +0200
commite82e30862aa4af91ee2d33e554406f20ee7b4155 (patch)
tree4cc032c7933180a0cfdc0874fe8f8e6cb459d15d /Eigen/src/Core/MapBase.h
parent03febf00a0f4bff41bb4d1ea222bf378c305ef1f (diff)
typo
Diffstat (limited to 'Eigen/src/Core/MapBase.h')
-rw-r--r--Eigen/src/Core/MapBase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/MapBase.h b/Eigen/src/Core/MapBase.h
index 5bdf59fbc..0151cc67f 100644
--- a/Eigen/src/Core/MapBase.h
+++ b/Eigen/src/Core/MapBase.h
@@ -177,7 +177,7 @@ template<typename Derived> class MapBase
// FIXME it seems VS does not allow to do "using Base::operator+="
// and to overload operator+= at the same time, therefore we have to
// explicitly add these two overloads.
- // Maye their exists a better solution though.
+ // Maybe there exists a better solution though.
template<typename ProductDerived, typename Lhs,typename Rhs>
Derived& operator+=(const Flagged<ProductBase<ProductDerived,Lhs,Rhs>, 0, EvalBeforeNestingBit | EvalBeforeAssigningBit>& other)
{ return Base::operator+=(other); }