mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-22 09:39:34 +08:00
Fixed warnings regarding missing assignment operator.
This commit is contained in:
parent
988aaed964
commit
cedea2aba4
@ -323,6 +323,8 @@ template<typename Derived> struct MatrixExponentialReturnValue
|
||||
|
||||
protected:
|
||||
const Derived& m_src;
|
||||
private:
|
||||
MatrixExponentialReturnValue& operator=(const MatrixExponentialReturnValue&);
|
||||
};
|
||||
|
||||
template<typename Derived>
|
||||
|
@ -116,9 +116,10 @@ class MatrixFunction<MatrixType, 0>
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
const MatrixType& m_A; /**< \brief Reference to argument of matrix function. */
|
||||
StemFunction *m_f; /**< \brief Stem function for matrix function under consideration */
|
||||
|
||||
MatrixFunction& operator=(const MatrixFunction&);
|
||||
};
|
||||
|
||||
|
||||
@ -182,6 +183,8 @@ class MatrixFunction<MatrixType, 1>
|
||||
* separation constant is set to 0.1, a value taken from the
|
||||
* paper by Davies and Higham. */
|
||||
static const RealScalar separation() { return static_cast<RealScalar>(0.1); }
|
||||
|
||||
MatrixFunction& operator=(const MatrixFunction&);
|
||||
};
|
||||
|
||||
/** \brief Constructor.
|
||||
@ -526,6 +529,8 @@ template<typename Derived> class MatrixFunctionReturnValue
|
||||
private:
|
||||
const Derived& m_A;
|
||||
StemFunction *m_f;
|
||||
|
||||
MatrixFunctionReturnValue& operator=(const MatrixFunctionReturnValue&);
|
||||
};
|
||||
|
||||
template<typename Derived>
|
||||
|
Loading…
x
Reference in New Issue
Block a user