diff --git a/compiler/ast/trees.nim b/compiler/ast/trees.nim index 6f4f9ef1ec49a..6d9c629d728df 100644 --- a/compiler/ast/trees.nim +++ b/compiler/ast/trees.nim @@ -49,7 +49,7 @@ template cmpFloatRep*(a, b: BiggestFloat): bool = cast[uint64](a) == cast[uint64](b) template makeTreeEquivalenceProc*( - name, relaxedKindCheck,symCheck, floatCheck, typeCheck, commentCheck) {.dirty.} = + name, relaxedKindCheck, symCheck, floatCheck, typeCheck, commentCheck) {.dirty.} = ## Defines a tree equivalence checking procedure. ## This skeleton is shared between all recursive ## `PNode` equivalence checks in the compiler code base