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
OpenMesh
OpenMesh
Commits
0aced4c8
Commit
0aced4c8
authored
Dec 16, 2015
by
Jan Möbius
Browse files
Fixed signed unsigned warning
parent
a8af8890
Pipeline
#441
passed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/OpenMesh/Core/Mesh/PolyConnectivity.cc
View file @
0aced4c8
...
...
@@ -135,7 +135,8 @@ PolyConnectivity::add_face(const VertexHandle* _vertex_handles, size_t _vhs_size
edgeData_
.
resize
(
n
);
next_cache_
.
resize
(
6
*
n
);
}
int
next_cache_count
=
0
;
size_t
next_cache_count
=
0
;
// don't allow degenerated faces
assert
(
n
>
2
);
...
...
Jan Möbius
@moebius
mentioned in commit
4fed1cd9
·
Dec 16, 2015
mentioned in commit
4fed1cd9
mentioned in commit 4fed1cd918dff6ed8b5bbb45f4b2f19ff03a2d47
Toggle commit list
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