Remove double const qualifier

This commit is contained in:
Gael Guennebaud
2013-07-10 23:54:53 +02:00
parent 6d1f5dbaae
commit 84f52ad317
3 changed files with 3 additions and 3 deletions

View File

@@ -207,7 +207,7 @@ DenseBase<Derived>::transpose()
*
* \sa transposeInPlace(), adjoint() */
template<typename Derived>
inline const typename DenseBase<Derived>::ConstTransposeReturnType
inline typename DenseBase<Derived>::ConstTransposeReturnType
DenseBase<Derived>::transpose() const
{
return ConstTransposeReturnType(derived());