mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-12 11:49:02 +08:00
Just tidy up: no need to specify template parameters inside class body.
This commit is contained in:
parent
0017d8c58f
commit
daa65c5bce
@ -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) :
|
||||||
|
Loading…
x
Reference in New Issue
Block a user