diff options
Diffstat (limited to 'rod/ast.nim')
-rwxr-xr-x | rod/ast.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rod/ast.nim b/rod/ast.nim index c7c0fa7d0..91eb37506 100755 --- a/rod/ast.nim +++ b/rod/ast.nim @@ -877,7 +877,7 @@ proc newSons(father: PType, length: int) = proc addSon(father, son: PType) = if isNil(father.sons): father.sons = @[] add(father.sons, son) - assert((father.kind != tyGenericInvokation) or (son.kind != tyGenericInst)) + #assert((father.kind != tyGenericInvokation) or (son.kind != tyGenericInst)) proc sonsLen(n: PNode): int = if isNil(n.sons): result = 0 |