mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-22 01:29:35 +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:
|
protected:
|
||||||
const Derived& m_src;
|
const Derived& m_src;
|
||||||
|
private:
|
||||||
|
MatrixExponentialReturnValue& operator=(const MatrixExponentialReturnValue&);
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename Derived>
|
template<typename Derived>
|
||||||
|
@ -116,9 +116,10 @@ class MatrixFunction<MatrixType, 0>
|
|||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
const MatrixType& m_A; /**< \brief Reference to argument of matrix function. */
|
const MatrixType& m_A; /**< \brief Reference to argument of matrix function. */
|
||||||
StemFunction *m_f; /**< \brief Stem function for matrix function under consideration */
|
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
|
* separation constant is set to 0.1, a value taken from the
|
||||||
* paper by Davies and Higham. */
|
* paper by Davies and Higham. */
|
||||||
static const RealScalar separation() { return static_cast<RealScalar>(0.1); }
|
static const RealScalar separation() { return static_cast<RealScalar>(0.1); }
|
||||||
|
|
||||||
|
MatrixFunction& operator=(const MatrixFunction&);
|
||||||
};
|
};
|
||||||
|
|
||||||
/** \brief Constructor.
|
/** \brief Constructor.
|
||||||
@ -526,6 +529,8 @@ template<typename Derived> class MatrixFunctionReturnValue
|
|||||||
private:
|
private:
|
||||||
const Derived& m_A;
|
const Derived& m_A;
|
||||||
StemFunction *m_f;
|
StemFunction *m_f;
|
||||||
|
|
||||||
|
MatrixFunctionReturnValue& operator=(const MatrixFunctionReturnValue&);
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename Derived>
|
template<typename Derived>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user