Skip to content
Snippets Groups Projects
Commit 8e1eadfe authored by Christian Engwer's avatar Christian Engwer
Browse files

doku fix

[[Imported from SVN: r5592]]
parent cc526d85
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ namespace Dune {
fvector_assigner(fvector_assigner & a) : v(a.v), c(a.c), temporary(false)
{}
/*! @brief Constructor from vector and temporary flag
\param v vector which should be initialized
\param _v vector which should be initialized
\param t bool indicating, that this is a temporary object (see ~fvector_assigner)
*/
fvector_assigner(FieldVector<T,s> & _v, bool t) : v(_v), c(0), temporary(t)
......@@ -187,7 +187,7 @@ namespace Dune {
fmatrix_assigner(fmatrix_assigner & a) : A(a.A), c(a.c), r(a.r), temporary(false)
{}
/*! @brief Constructor from matrix and temporary flag
\param v matrix which should be initialized
\param _A matrix which should be initialized
\param t bool indicating, that this is a temporary object (see ~fmatrix_assigner)
*/
fmatrix_assigner(FieldMatrix<T,n,m> & _A, bool t) : A(_A), c(0), r(0), temporary(t)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment