Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Core Modules
dune-localfunctions
Commits
20c7ee34
Commit
20c7ee34
authored
Dec 16, 2021
by
Timo Koch
Browse files
[cleanup][rannacherturek] Remove obsolete bounds check on unsigned integer
Fix type-limits compiler warning
parent
52d168b8
Pipeline
#42184
passed with stage
in 11 minutes and 50 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
dune/localfunctions/rannacherturek/rannachertureklocalcoefficients.hh
View file @
20c7ee34
...
...
@@ -48,7 +48,7 @@ namespace Dune
//! map index i to local key
const
LocalKey
&
localKey
(
std
::
size_t
i
)
const
{
assert
(
0
<=
i
&&
i
<
2
*
d
);
assert
(
i
<
2
*
d
);
return
localKeys_
[
i
];
}
...
...
Write
Preview
Supports
Markdown
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