fix #116 and remove debug cout's

This commit is contained in:
Benoit Jacob
2010-04-30 11:58:17 -04:00
parent 38facbd55b
commit cf4f90ccea
2 changed files with 16 additions and 5 deletions

View File

@@ -126,8 +126,8 @@ DenseBase<Derived>::format(const IOFormat& fmt) const
return WithFormat<Derived>(derived(), fmt);
}
template<typename Scalar>
struct ei_significant_decimals_impl
template<typename Scalar, bool IsInteger>
struct ei_significant_decimals_default_impl
{
typedef typename NumTraits<Scalar>::Real RealScalar;
static inline int run()
@@ -136,6 +136,20 @@ struct ei_significant_decimals_impl
}
};
template<typename Scalar>
struct ei_significant_decimals_default_impl<Scalar, true>
{
static inline int run()
{
return 0;
}
};
template<typename Scalar>
struct ei_significant_decimals_impl
: ei_significant_decimals_default_impl<Scalar, NumTraits<Scalar>::IsInteger>
{};
/** \internal
* print the matrix \a _m to the output stream \a s using the output format \a fmt */
template<typename Derived>