Skip to content
Snippets Groups Projects
Commit bdabcd44 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Clean up qualifiers

parent 94973d9c
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ class MyBlockProblem<MyConvexProblemTypeTEMPLATE>::IterateObject {
* \param bisection The class used to do a scalar bisection
* \param problem The problem including quadratic part and nonlinear part
*/
IterateObject(const Bisection& bisection, MyConvexProblemType& problem)
IterateObject(Bisection const& bisection, MyConvexProblemType& problem)
: problem(problem), bisection(bisection) {}
public:
......@@ -66,7 +66,7 @@ class MyBlockProblem<MyConvexProblemTypeTEMPLATE>::IterateObject {
}
/** \brief Update the i-th block of the current iterate */
void updateIterate(const LocalVectorType& ui, int i) {
void updateIterate(LocalVectorType const& ui, int i) {
u[i] = ui;
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment