Doc: warn about constness in LLT::solveInPlace

(grafted from b223918ea99dcff9f6a3f8d017e7bd79ff4a7db7
)
This commit is contained in:
Gael Guennebaud 2017-08-22 14:12:47 +02:00
parent 0137ed4f19
commit 51e1aa1539

View File

@ -490,6 +490,9 @@ void LLT<_MatrixType,_UpLo>::_solve_impl(const RhsType &rhs, DstType &dst) const
*
* This version avoids a copy when the right hand side matrix b is not needed anymore.
*
* \warning The parameter is only marked 'const' to make the C++ compiler accept a temporary expression here.
* This function will const_cast it, so constness isn't honored here.
*
* \sa LLT::solve(), MatrixBase::llt()
*/
template<typename MatrixType, int _UpLo>