diff --git a/headers/private/kernel/util/SplayTree.h b/headers/private/kernel/util/SplayTree.h index f9a2b50cfd..551a7a4ce6 100644 --- a/headers/private/kernel/util/SplayTree.h +++ b/headers/private/kernel/util/SplayTree.h @@ -563,6 +563,11 @@ public: return fTree.IsEmpty(); } + Node* FindClosest(const Key& key, bool greater, bool orEqual) + { + return fTree.FindClosest(key, greater, orEqual); + } + Node* FindMin() { return fTree.FindMin();