Skip to content
Snippets Groups Projects
Commit bcdd4100 authored by Andreas Lauser's avatar Andreas Lauser
Browse files

box richards test: add missing const qualifier

this makes sure that the test does not abort with the error message
"The problem does not provide a initial() method."

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@5922 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 71cd5221
No related merge requests found
......@@ -302,7 +302,7 @@ public:
*/
using ParentType::initial;
void initial(PrimaryVariables &values,
const GlobalPosition &pos)
const GlobalPosition &pos) const
{ initial_(values, pos); };
// \}
......
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