Skip to content
Snippets Groups Projects
Commit 0aced4c8 authored by Jan Möbius's avatar Jan Möbius
Browse files

Fixed signed unsigned warning

parent a8af8890
Branches
Tags
1 merge request!42Compiler error fix
Pipeline #
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment