diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2023-01-01 21:14:26 -0700 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2023-01-01 22:42:08 -0700 |
commit | 0c706b6ad52776430ac15cf0e286dd473091d93e (patch) | |
tree | 4302ce6e93802c50f04acaec4b1cdff93e579e61 /lib | |
parent | 5edd0d7be38595c4777d5130ca20f907d8a74963 (diff) |
lint: Turn on predeclared
Diffstat (limited to 'lib')
-rw-r--r-- | lib/containers/rbtree.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/containers/rbtree.go b/lib/containers/rbtree.go index f922a7b..0430123 100644 --- a/lib/containers/rbtree.go +++ b/lib/containers/rbtree.go @@ -391,10 +391,10 @@ func (t *RBTree[K, V]) Insert(val V) { t.root.Color = Black } -func (t *RBTree[K, V]) transplant(old, new *RBNode[V]) { - *t.parentChild(old) = new - if new != nil { - new.Parent = old.Parent +func (t *RBTree[K, V]) transplant(oldNode, newNode *RBNode[V]) { + *t.parentChild(oldNode) = newNode + if newNode != nil { + newNode.Parent = oldNode.Parent } } |