From eb13ada3aa4e8514bc297e99badcc87c5f71533d Mon Sep 17 00:00:00 2001 From: Christoph Hertzberg Date: Tue, 23 Sep 2014 17:21:27 +0200 Subject: [PATCH] Renamed CwiseInverseReturnType to InverseReturnType for ArrayBase::inverse() --- Eigen/src/plugins/ArrayCwiseUnaryOps.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Eigen/src/plugins/ArrayCwiseUnaryOps.h b/Eigen/src/plugins/ArrayCwiseUnaryOps.h index 4e64826da..bb1f96bdc 100644 --- a/Eigen/src/plugins/ArrayCwiseUnaryOps.h +++ b/Eigen/src/plugins/ArrayCwiseUnaryOps.h @@ -4,7 +4,7 @@ //typedef CwiseUnaryOp, const Derived> AbsReturnType; //typedef CwiseUnaryOp, const Derived> Abs2ReturnType; //typedef CwiseUnaryOp, const Derived> SqrtReturnType; -//typedef CwiseUnaryOp, const Derived> CwiseInverseReturnType; +typedef CwiseUnaryOp, const Derived> InverseReturnType; //typedef CwiseUnaryOp >, const Derived> CwiseScalarEqualReturnType; typedef CwiseUnaryOp, const Derived> ExpReturnType; @@ -214,10 +214,10 @@ pow(const Scalar& exponent) const * \sa operator/(), operator*() */ EIGEN_DEVICE_FUNC -inline const CwiseInverseReturnType +inline const InverseReturnType inverse() const { - return CwiseInverseReturnType(derived()); + return InverseReturnType(derived()); } /** \returns an expression of the coefficient-wise square of *this.