2
0
Laytan Laats 1 жил өмнө
parent
commit
ae41779366

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