mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-21 10:49:33 -06:00
remove redundant type
This commit is contained in:
@@ -293,13 +293,13 @@ public:
|
||||
|
||||
if (DELTA*left->sz < right->sz) {
|
||||
left = link(node,left,right->left);
|
||||
ref<Node> node = upd_node(node,left,right->right);
|
||||
node = upd_node(node,left,right->right);
|
||||
return balanceL(node);
|
||||
}
|
||||
|
||||
if (left->sz > DELTA*right->sz) {
|
||||
right = link(node,left->right,right);
|
||||
ref<Node> node = upd_node(node,left->left,right);
|
||||
node = upd_node(node,left->left,right);
|
||||
return balanceR(node);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user