mark more methods as const. also rename, Numeric.h->NumTraits.h

This commit is contained in:
Benoit Jacob
2007-10-13 20:53:30 +00:00
parent e445f5085a
commit 5f0af72abc
6 changed files with 11 additions and 10 deletions

View File

@@ -75,9 +75,9 @@ template<typename MatrixType> class Minor
template<typename Scalar, typename Derived>
Minor<Derived>
Object<Scalar, Derived>::minor(int row, int col)
Object<Scalar, Derived>::minor(int row, int col) const
{
return Minor<Derived>(static_cast<Derived*>(this)->ref(), row, col);
return Minor<Derived>(static_cast<Derived*>(const_cast<Object*>(this))->ref(), row, col);
}
#endif // EI_MINOR_H