mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
remove redundant &
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user