fix compilation issue with clang

This commit is contained in:
Thomas Capricelli 2010-07-01 04:26:07 +02:00
parent d414ab51f0
commit 1399fd9cbd

View File

@ -134,7 +134,7 @@ template<typename BinaryOp, typename MatrixType> class SelfCwiseBinaryOp
ei_assert(rows() == rhs.rows() && cols() == rhs.cols()); ei_assert(rows() == rhs.rows() && cols() == rhs.cols());
ei_assign_impl<SelfCwiseBinaryOp, RhsDerived>::run(*this,rhs.derived()); ei_assign_impl<SelfCwiseBinaryOp, RhsDerived>::run(*this,rhs.derived());
#ifndef EIGEN_NO_DEBUG #ifndef EIGEN_NO_DEBUG
checkTransposeAliasing(rhs.derived()); this->checkTransposeAliasing(rhs.derived());
#endif #endif
return *this; return *this;
} }