aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/SelfCwiseBinaryOp.h
diff options
context:
space:
mode:
authorGravatar Thomas Capricelli <orzel@freehackers.org>2010-07-01 04:26:07 +0200
committerGravatar Thomas Capricelli <orzel@freehackers.org>2010-07-01 04:26:07 +0200
commit1399fd9cbd0880b5ea64b34e1680b89498c64e4e (patch)
treef5dcdaa3f7eb8d6a1b3e56584ac41cb21044d565 /Eigen/src/Core/SelfCwiseBinaryOp.h
parentd414ab51f0264b0ec9afacbf2ae9ac8e0d17a41f (diff)
fix compilation issue with clang
Diffstat (limited to 'Eigen/src/Core/SelfCwiseBinaryOp.h')
-rw-r--r--Eigen/src/Core/SelfCwiseBinaryOp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/SelfCwiseBinaryOp.h b/Eigen/src/Core/SelfCwiseBinaryOp.h
index ab4eee7b9..fbeb5bff2 100644
--- a/Eigen/src/Core/SelfCwiseBinaryOp.h
+++ b/Eigen/src/Core/SelfCwiseBinaryOp.h
@@ -134,7 +134,7 @@ template<typename BinaryOp, typename MatrixType> class SelfCwiseBinaryOp
ei_assert(rows() == rhs.rows() && cols() == rhs.cols());
ei_assign_impl<SelfCwiseBinaryOp, RhsDerived>::run(*this,rhs.derived());
#ifndef EIGEN_NO_DEBUG
- checkTransposeAliasing(rhs.derived());
+ this->checkTransposeAliasing(rhs.derived());
#endif
return *this;
}