aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported
diff options
context:
space:
mode:
authorGravatar Chen-Pang He <jdh8@ms63.hinet.net>2012-10-14 01:36:54 +0800
committerGravatar Chen-Pang He <jdh8@ms63.hinet.net>2012-10-14 01:36:54 +0800
commitdaa65c5bcedc7892a5bf93000384448204c9a683 (patch)
tree27e5ff412dbb632a52d550583c52d1ca5c6ba127 /unsupported
parent0017d8c58f5b60f9a6f038544d84f8a3595b57a0 (diff)
Just tidy up: no need to specify template parameters inside class body.
Diffstat (limited to 'unsupported')
-rw-r--r--unsupported/Eigen/src/MatrixFunctions/MatrixPowerBase.h2
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) :