Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux
Commits
b1a6029f
Commit
b1a6029f
authored
Dec 19, 2016
by
Timo Koch
Browse files
[cleanup] Silence unsigned signed int comparison warning
parent
eb522e6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
dumux/discretization/cellcentered/stencils.hh
View file @
b1a6029f
...
...
@@ -69,7 +69,7 @@ public:
// remove the element itself and possible ghost neighbors from the neighbor stencil
neighborStencil_
.
erase
(
std
::
remove_if
(
neighborStencil_
.
begin
(),
neighborStencil_
.
end
(),
[
globalI
](
int
i
){
return
(
i
==
globalI
);
}),
[
globalI
](
auto
i
){
return
(
i
==
globalI
);
}),
neighborStencil_
.
end
());
}
...
...
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