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
iwr
dune-gmsh4
Commits
c063255f
Commit
c063255f
authored
Jul 14, 2021
by
Praetorius, Simon
Browse files
Change wrong index type to remove integer comparison warning
parent
0f02b8a5
Pipeline
#6804
passed with stage
in 8 minutes and 15 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
dune/gmsh4/gridcreators/lagrangegridcreator.hh
View file @
c063255f
...
...
@@ -128,7 +128,7 @@ namespace Dune
parametrization_
.
push_back
(
ElementParametrization
{
type
});
auto
&
param
=
parametrization_
.
back
();
param
.
nodes
.
resize
(
element
.
nodes
.
size
());
for
(
in
t
j
=
0
;
j
<
element
.
nodes
.
size
();
++
j
)
for
(
std
::
size_
t
j
=
0
;
j
<
element
.
nodes
.
size
();
++
j
)
param
.
nodes
[
j
]
=
vertexMap_
[
element
.
nodes
[
j
]
-
vertexShift_
];
param
.
corners
=
connectivity
;
...
...
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