Skip to content
Snippets Groups Projects
Commit a82dc4ef authored by Uli Sack's avatar Uli Sack
Browse files

give rhs constructor parameter the const qualifier - same as in the

setter method as well as the base clas constructors
parent 57552d01
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@
MultigridStep(const MatrixType& mat,
VectorType& x,
VectorType& rhs,
const VectorType& rhs,
int mu, int nu1, int nu2,
LinearIterationStep<MatrixType, VectorType>* preSmoother,
LinearIterationStep<MatrixType, VectorType>* postSmoother,
......@@ -56,7 +56,7 @@
MultigridStep(const MatrixType& mat,
VectorType& x,
VectorType& rhs) :
const VectorType& rhs) :
LinearIterationStep<MatrixType, VectorType>(mat, x, rhs),
basesolver_(0),
preprocessCalled(false)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment