Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Praetorius, Simon
dune-amdis
Commits
44a076c9
Commit
44a076c9
authored
Nov 15, 2018
by
Praetorius, Simon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added missing const specifier for gridview get-method in ProblemStat
parent
e034a097
Pipeline
#1418
passed with stage
in 31 minutes and 46 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/amdis/ProblemStat.hpp
src/amdis/ProblemStat.hpp
+1
-1
No files found.
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
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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