mirror of https://github.com/CGAL/cgal
Document garbage_size() properly
This commit is contained in:
parent
7a2d545a8b
commit
5474615dc3
|
|
@ -675,12 +675,13 @@ public:
|
||||||
const_iterator garbage_end () const { return m_indices.end(); }
|
const_iterator garbage_end () const { return m_indices.end(); }
|
||||||
/*!
|
/*!
|
||||||
\brief Number of removed points.
|
\brief Number of removed points.
|
||||||
|
\sa `garbage_size()`
|
||||||
\note The method `garbage_size()` is also available and does the
|
|
||||||
same thing.
|
|
||||||
*/
|
*/
|
||||||
std::size_t number_of_removed_points () const { return m_nb_removed; }
|
std::size_t number_of_removed_points () const { return m_nb_removed; }
|
||||||
/// \cond SKIP_IN_MANUAL
|
/*!
|
||||||
|
\brief Number of removed points.
|
||||||
|
\sa `number_of_removed_points()`
|
||||||
|
*/
|
||||||
std::size_t garbage_size () const { return number_of_removed_points(); }
|
std::size_t garbage_size () const { return number_of_removed_points(); }
|
||||||
/// \endcond
|
/// \endcond
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue