fix compilation (cwise and epsilon)

This commit is contained in:
Gael Guennebaud
2010-02-11 09:24:29 +01:00
parent 602778ea26
commit 48f5980669
2 changed files with 3 additions and 3 deletions

View File

@@ -100,7 +100,7 @@ EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF_VECTORIZABLE_FIXED_SIZE(_Scalar,_AmbientDim)
inline void setNull() { setEmpty(); }
/** \returns true if the box is empty. */
inline bool isEmpty() const { return (m_min.cwise() > m_max).any(); }
inline bool isEmpty() const { return (m_min.array() > m_max.array()).any(); }
/** Makes \c *this an empty box. */
inline void setEmpty()