aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/NestByValue.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Core/NestByValue.h')
-rw-r--r--Eigen/src/Core/NestByValue.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Eigen/src/Core/NestByValue.h b/Eigen/src/Core/NestByValue.h
index 51f38e8d8..0c6cdb114 100644
--- a/Eigen/src/Core/NestByValue.h
+++ b/Eigen/src/Core/NestByValue.h
@@ -77,15 +77,15 @@ template<typename ExpressionType> class NestByValue
}
template<int LoadMode>
- inline const PacketScalar _packetCoeff(int row, int col) const
+ inline const PacketScalar _packet(int row, int col) const
{
- return m_expression.template packetCoeff<LoadMode>(row, col);
+ return m_expression.template packet<LoadMode>(row, col);
}
template<int LoadMode>
- inline void _writePacketCoeff(int row, int col, const PacketScalar& x)
+ inline void _writePacket(int row, int col, const PacketScalar& x)
{
- m_expression.const_cast_derived().template writePacketCoeff<LoadMode>(row, col, x);
+ m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x);
}
protected: