From 8e1eadfe73bc5503a8362c8ee43ff3082e50bb41 Mon Sep 17 00:00:00 2001 From: Christian Engwer <christi@dune-project.org> Date: Thu, 24 Sep 2009 06:31:08 +0000 Subject: [PATCH] doku fix [[Imported from SVN: r5592]] --- common/fassign.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/fassign.hh b/common/fassign.hh index 3e56bd528..6ff7eac73 100644 --- a/common/fassign.hh +++ b/common/fassign.hh @@ -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) -- GitLab