mirror of https://github.com/CGAL/cgal
Fix warnings (comparisons signed-unsigned)
(cherry picked from commit b7062785a09366b8a46d022f15c50932587e2fd2)
This commit is contained in:
parent
ce66e70412
commit
9a47dcf64f
|
|
@ -140,12 +140,12 @@ public:
|
|||
cache_validity = true;
|
||||
}
|
||||
|
||||
int cached_number_of_incident_facets() const
|
||||
std::size_t cached_number_of_incident_facets() const
|
||||
{
|
||||
return number_of_incident_facets_;
|
||||
}
|
||||
|
||||
int cached_number_of_components() const
|
||||
std::size_t cached_number_of_components() const
|
||||
{
|
||||
return number_of_components_;
|
||||
}
|
||||
|
|
@ -160,8 +160,8 @@ public:
|
|||
}
|
||||
private:
|
||||
|
||||
int number_of_incident_facets_;
|
||||
int number_of_components_; // number of components in the adjacency
|
||||
std::size_t number_of_incident_facets_;
|
||||
std::size_t number_of_components_; // number of components in the adjacency
|
||||
// graph of incident facets (in complex)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue