Merge pull request #4124 from aboudev/patch-1

minor fix: add const specifier
This commit is contained in:
Laurent Rineau 2019-08-01 17:08:49 +02:00
commit 53fd5feaf5
1 changed files with 1 additions and 1 deletions

View File

@ -854,7 +854,7 @@ namespace CGAL {
/*!
Number of points not assigned to a shape.
*/
std::size_t number_of_unassigned_points() {
std::size_t number_of_unassigned_points() const {
return m_num_available_points;
}