aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Conjugate.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-02-28 12:38:12 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-02-28 12:38:12 +0000
commit6907886a156c4b94ec7530351b271e1c1bc5b81b (patch)
tree9c9431ba83e0234e5f199031ed48915ad6365422 /Eigen/src/Core/Conjugate.h
parentc67e717404258d3625a74c67f50be34939af6d95 (diff)
prefix global functions with ei_ as previous solution was rather
fragile. also fix compilation with g++ 4.3.
Diffstat (limited to 'Eigen/src/Core/Conjugate.h')
-rw-r--r--Eigen/src/Core/Conjugate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/Conjugate.h b/Eigen/src/Core/Conjugate.h
index 839a43bc7..21f256c76 100644
--- a/Eigen/src/Core/Conjugate.h
+++ b/Eigen/src/Core/Conjugate.h
@@ -63,7 +63,7 @@ template<typename MatrixType> class Conjugate : NoOperatorEquals,
Scalar _coeff(int row, int col) const
{
- return conj(m_matrix.coeff(row, col));
+ return ei_conj(m_matrix.coeff(row, col));
}
protected: