aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Lazy.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Core/Lazy.h')
-rw-r--r--Eigen/src/Core/Lazy.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Eigen/src/Core/Lazy.h b/Eigen/src/Core/Lazy.h
index 0c65cdeba..3e25acb19 100644
--- a/Eigen/src/Core/Lazy.h
+++ b/Eigen/src/Core/Lazy.h
@@ -72,6 +72,11 @@ template<typename ExpressionType> class Lazy
return m_expression.coeff(row, col);
}
+ PacketScalar _packetCoeff(int row, int col) const
+ {
+ return m_expression.packetCoeff(row, col);
+ }
+
protected:
const typename ExpressionType::Nested m_expression;
};