Just tidy up: no need to specify template parameters inside class body.

This commit is contained in:
Chen-Pang He 2012-10-14 01:36:54 +08:00
parent 0017d8c58f
commit daa65c5bce

View File

@ -106,7 +106,7 @@ template<typename Derived, typename Lhs, typename Rhs>
class MatrixPowerProduct : public MatrixBase<MatrixPowerProduct<Derived,Lhs,Rhs> > class MatrixPowerProduct : public MatrixBase<MatrixPowerProduct<Derived,Lhs,Rhs> >
{ {
public: public:
typedef MatrixBase<MatrixPowerProduct<Derived,Lhs,Rhs> > Base; typedef MatrixBase<MatrixPowerProduct> Base;
EIGEN_DENSE_PUBLIC_INTERFACE(MatrixPowerProduct) EIGEN_DENSE_PUBLIC_INTERFACE(MatrixPowerProduct)
MatrixPowerProduct(Derived& pow, const Rhs& b, RealScalar p) : MatrixPowerProduct(Derived& pow, const Rhs& b, RealScalar p) :