rb: fix rb.Node.getLast() that never worked
This commit is contained in:
committed by
Andrew Kelley
parent
14d9582e9a
commit
cbd42e44d6
@@ -123,7 +123,8 @@ pub const Node = struct {
|
||||
return node;
|
||||
}
|
||||
|
||||
fn getLast(node: *Node) *Node {
|
||||
fn getLast(nodeconst: *Node) *Node {
|
||||
var node = nodeconst;
|
||||
while (node.right) |right| {
|
||||
node = right;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user