This commit is contained in:
Gael Guennebaud 2009-08-06 15:04:42 +02:00
parent 03febf00a0
commit e82e30862a

View File

@ -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); }