Implement Node.unsplit()

This commit is contained in:
Jackson Campolattaro 2020-07-02 12:30:52 -04:00
parent fe333de2fe
commit 29771d9f7b
1 changed files with 4 additions and 0 deletions

View File

@ -33,12 +33,16 @@ namespace CGAL {
m_depth = parent->m_depth + 1;
}
// The default constructor is enough
void split() {
}
void unsplit() {
// std::unique_ptr handles this nicely
m_children.reset();
}
};