We need not prohibit assignment here. Thanks to changeset 3edd4681f2

.
This commit is contained in:
Chen-Pang He
2013-07-07 19:57:23 +08:00
parent 55ec3cc6d5
commit 00e30a5fc4
5 changed files with 0 additions and 11 deletions

View File

@@ -34,7 +34,6 @@ class MatrixPowerRetval : public ReturnByValue< MatrixPowerRetval<MatrixType> >
private:
MatrixPower<MatrixType>& m_pow;
const RealScalar m_p;
MatrixPowerRetval& operator=(const MatrixPowerRetval&);
};
template<typename MatrixType>
@@ -500,7 +499,6 @@ class MatrixPowerReturnValue : public ReturnByValue< MatrixPowerReturnValue<Deri
private:
const Derived& m_A;
const RealScalar m_p;
MatrixPowerReturnValue& operator=(const MatrixPowerReturnValue&);
};
template<typename Derived>
@@ -524,7 +522,6 @@ class MatrixComplexPowerReturnValue : public ReturnByValue< MatrixComplexPowerRe
private:
const Derived& m_A;
const ComplexScalar m_p;
MatrixComplexPowerReturnValue& operator=(const MatrixComplexPowerReturnValue&);
};
namespace internal {