mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-21 19:51:49 +00:00
COMMON: Remove unused method in Common::RBTree
This commit is contained in:
parent
09db135b3a
commit
b8f7e9416b
@ -343,19 +343,6 @@ private:
|
||||
Node *_leftmost = nullptr;
|
||||
size_t _size = 0;
|
||||
|
||||
Node *merge(Node *left, Node *right) {
|
||||
if (!right)
|
||||
return left;
|
||||
else if (!left)
|
||||
return right;
|
||||
else {
|
||||
auto lm = leftmost(right);
|
||||
lm->left = left;
|
||||
left->parent = lm;
|
||||
return right;
|
||||
}
|
||||
}
|
||||
|
||||
BasicIterator internalInsert(Node **starting_point, const ValueType &val) {
|
||||
auto it = starting_point;
|
||||
Node *parent = nullptr;
|
||||
|
Loading…
x
Reference in New Issue
Block a user