Replace node() with castedNode()

This commit is contained in:
Léa Saviot
2018-06-28 17:07:24 +02:00
parent c8acf7dbda
commit 069ed145a3
7 changed files with 12 additions and 12 deletions

View File

@@ -12,7 +12,7 @@ TreeNode * LayoutRef::failedAllocationNode() {
template <typename T>
LayoutCursor LayoutReference<T>::cursor() const {
return LayoutCursor(this->node());
return LayoutCursor(this->castedNode());
}
template LayoutCursor LayoutReference<LayoutNode>::cursor() const;