Replace is_empty() with empty()

This commit is contained in:
Jackson Campolattaro 2020-07-31 12:05:06 -04:00
parent 538ee93533
commit fef28d4c8b
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ public:
* \brief check whether this node contains any points
* \return if this node contains no points
*/
bool is_empty() const {
bool empty() const {
return m_points.empty();
}