Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
amdis
amdis-core
Commits
44a076c9
Commit
44a076c9
authored
Nov 15, 2018
by
Praetorius, Simon
Browse files
added missing const specifier for gridview get-method in ProblemStat
parent
e034a097
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/amdis/ProblemStat.hpp
View file @
44a076c9
...
...
@@ -276,7 +276,7 @@ namespace AMDiS
Grid
const
&
grid
()
const
{
return
*
grid_
;
}
/// Return the gridView of the leaf-level
GridView
const
&
gridView
()
{
return
globalBasis_
->
gridView
();
}
GridView
const
&
gridView
()
const
{
return
globalBasis_
->
gridView
();
}
/// Return the \ref globalBasis_
GlobalBasis
&
globalBasis
()
{
return
*
globalBasis_
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment