removed some documentation referencing c++98 behaviour

This commit is contained in:
Erik Schultheis
2022-01-29 11:16:04 +02:00
parent 66464bd2a8
commit 89c6ab2385
6 changed files with 9 additions and 26 deletions

View File

@@ -180,9 +180,7 @@ class DiagonalMatrix
EIGEN_DEVICE_FUNC
inline DiagonalMatrix(const Scalar& x, const Scalar& y, const Scalar& z) : m_diagonal(x,y,z) {}
/** \brief Construct a diagonal matrix with fixed size from an arbitrary number of coefficients. \cpp11
*
* There exists C++98 anologue constructors for fixed-size diagonal matrices having 2 or 3 coefficients.
/** \brief Construct a diagonal matrix with fixed size from an arbitrary number of coefficients.
*
* \warning To construct a diagonal matrix of fixed size, the number of values passed to this
* constructor must match the fixed dimension of \c *this.