Browse Source

remove redundant &

Laytan Laats 1 year ago
parent
commit
ae41779366
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/odin/ast/walk.odin

+ 1 - 1
core/odin/ast/walk.odin

@@ -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)