mirror of https://github.com/CGAL/cgal
Implement Node.unsplit()
This commit is contained in:
parent
fe333de2fe
commit
29771d9f7b
|
|
@ -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();
|
||||
}
|
||||
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue