Fix MSVC compilation

This commit is contained in:
Gael Guennebaud
2014-12-10 21:55:11 +01:00
parent 7fbc9d8409
commit ff29221951
2 changed files with 3 additions and 3 deletions

View File

@@ -464,8 +464,8 @@ template<typename Derived> class DenseBase
template<int RowFactor, int ColFactor>
inline const Replicate<Derived,RowFactor,ColFactor> replicate() const;
typedef const Replicate<Derived,Dynamic,Dynamic> ReplicateReturnType;
inline ReplicateReturnType replicate(Index rowFacor,Index colFactor) const;
typedef Replicate<Derived,Dynamic,Dynamic> ReplicateReturnType;
inline const ReplicateReturnType replicate(Index rowFacor,Index colFactor) const;
typedef Reverse<Derived, BothDirections> ReverseReturnType;
typedef const Reverse<const Derived, BothDirections> ConstReverseReturnType;