mirror of https://github.com/CGAL/cgal
Fixed a bad static_cast in Seam_mesh.h
This commit is contained in:
parent
3245d726e3
commit
c333aa34b1
|
|
@ -565,7 +565,7 @@ public:
|
||||||
/// Numbering
|
/// Numbering
|
||||||
vertices_size_type num_vertices() const
|
vertices_size_type num_vertices() const
|
||||||
{
|
{
|
||||||
if(number_of_vertices == static_cast<unsigned int>(-1)) {
|
if(number_of_vertices == static_cast<vertices_size_type>(-1)) {
|
||||||
number_of_vertices = vertices().size();
|
number_of_vertices = vertices().size();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue