Document garbage_size() properly

This commit is contained in:
Simon Giraudot 2018-12-13 14:43:46 +01:00
parent 7a2d545a8b
commit 5474615dc3
1 changed files with 5 additions and 4 deletions

View File

@ -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