From 39ac57fa6ddf9a74d9a6cc213293914d2e05ec31 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Mon, 4 Jan 2010 21:24:43 -0500 Subject: Big renaming: start ---> head end ---> tail Much frustration with sed syntax. Need to learn perl some day. --- unsupported/Eigen/AlignedVector3 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unsupported/Eigen/AlignedVector3') diff --git a/unsupported/Eigen/AlignedVector3 b/unsupported/Eigen/AlignedVector3 index a1510f19d..37018bfc6 100644 --- a/unsupported/Eigen/AlignedVector3 +++ b/unsupported/Eigen/AlignedVector3 @@ -106,7 +106,7 @@ template class AlignedVector3 { inline static void run(AlignedVector3& dest, const XprType& src) { - dest.m_coeffs.template start<3>() = src; + dest.m_coeffs.template head<3>() = src; dest.m_coeffs.w() = Scalar(0); } }; @@ -190,7 +190,7 @@ template class AlignedVector3 template inline bool isApprox(const MatrixBase& other, RealScalar eps=dummy_precision()) const { - return m_coeffs.template start<3>().isApprox(other,eps); + return m_coeffs.template head<3>().isApprox(other,eps); } }; -- cgit v1.2.3