aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/NestByValue.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-04-01 14:07:38 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-04-01 14:07:38 +0000
commit0f8e692b3f5edcab61d586d0a996a2e30bbb68a2 (patch)
tree123daf9331ebec2e605545aa296a7ca1d7cec753 /Eigen/src/Core/NestByValue.h
parent113fc3a2606997533287921ccec49e320bf9f79b (diff)
* Find SuperLU also when it is installed without a superlu/ prefix
* Some more CoeffReturnType changes
Diffstat (limited to 'Eigen/src/Core/NestByValue.h')
-rw-r--r--Eigen/src/Core/NestByValue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Core/NestByValue.h b/Eigen/src/Core/NestByValue.h
index dfe757447..844dfb115 100644
--- a/Eigen/src/Core/NestByValue.h
+++ b/Eigen/src/Core/NestByValue.h
@@ -54,7 +54,7 @@ template<typename ExpressionType> class NestByValue
inline int cols() const { return m_expression.cols(); }
inline int stride() const { return m_expression.stride(); }
- inline const Scalar coeff(int row, int col) const
+ inline const CoeffReturnType coeff(int row, int col) const
{
return m_expression.coeff(row, col);
}
@@ -64,7 +64,7 @@ template<typename ExpressionType> class NestByValue
return m_expression.const_cast_derived().coeffRef(row, col);
}
- inline const Scalar coeff(int index) const
+ inline const CoeffReturnType coeff(int index) const
{
return m_expression.coeff(index);
}