fix compilation on ubuntu 9.04's version of gcc 4.3 (yes, wtf)

This commit is contained in:
Benoit Jacob
2010-09-27 09:57:57 -04:00
parent 94ea1eed9a
commit 71f023de3e
6 changed files with 19 additions and 13 deletions

View File

@@ -463,7 +463,7 @@ template<typename ExpressionType, int Direction> class VectorwiseOp
/////////// Geometry module ///////////
const Homogeneous<ExpressionType,Direction> homogeneous() const;
Homogeneous<ExpressionType,Direction> homogeneous() const;
typedef typename ExpressionType::PlainObject CrossReturnType;
template<typename OtherDerived>
@@ -491,7 +491,7 @@ template<typename ExpressionType, int Direction> class VectorwiseOp
Direction==Horizontal ? HNormalized_SizeMinusOne : 1> >
HNormalizedReturnType;
const HNormalizedReturnType hnormalized() const;
HNormalizedReturnType hnormalized() const;
protected:
ExpressionTypeNested m_matrix;