Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenMesh
OpenMesh
Commits
0aced4c8
Commit
0aced4c8
authored
Dec 16, 2015
by
Jan Möbius
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed signed unsigned warning
parent
a8af8890
Pipeline
#441
passed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/OpenMesh/Core/Mesh/PolyConnectivity.cc
src/OpenMesh/Core/Mesh/PolyConnectivity.cc
+2
-1
No files found.
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
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