diff options
author | Chen-Pang He <jdh8@ms63.hinet.net> | 2012-10-14 01:36:54 +0800 |
---|---|---|
committer | Chen-Pang He <jdh8@ms63.hinet.net> | 2012-10-14 01:36:54 +0800 |
commit | daa65c5bcedc7892a5bf93000384448204c9a683 (patch) | |
tree | 27e5ff412dbb632a52d550583c52d1ca5c6ba127 | |
parent | 0017d8c58f5b60f9a6f038544d84f8a3595b57a0 (diff) |
Just tidy up: no need to specify template parameters inside class body.
-rw-r--r-- | unsupported/Eigen/src/MatrixFunctions/MatrixPowerBase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/Eigen/src/MatrixFunctions/MatrixPowerBase.h b/unsupported/Eigen/src/MatrixFunctions/MatrixPowerBase.h index e26497f65..edd14931e 100644 --- a/unsupported/Eigen/src/MatrixFunctions/MatrixPowerBase.h +++ b/unsupported/Eigen/src/MatrixFunctions/MatrixPowerBase.h @@ -106,7 +106,7 @@ template<typename Derived, typename Lhs, typename Rhs> class MatrixPowerProduct : public MatrixBase<MatrixPowerProduct<Derived,Lhs,Rhs> > { public: - typedef MatrixBase<MatrixPowerProduct<Derived,Lhs,Rhs> > Base; + typedef MatrixBase<MatrixPowerProduct> Base; EIGEN_DENSE_PUBLIC_INTERFACE(MatrixPowerProduct) MatrixPowerProduct(Derived& pow, const Rhs& b, RealScalar p) : |