remove redundant &

This commit is contained in:
Laytan Laats
2024-08-18 21:10:21 +02:00
parent bb3f848b4a
commit ae41779366
+1 -1
View File
@@ -61,7 +61,7 @@ walk :: proc(v: ^Visitor, node: ^Node) {
return
}
switch n in &node.derived {
switch n in node.derived {
case ^File:
if n.docs != nil {
walk(v, n.docs)