diff options
Diffstat (limited to 'compiler/ast.nim')
-rw-r--r-- | compiler/ast.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ast.nim b/compiler/ast.nim index 899019514..7a21f49ff 100644 --- a/compiler/ast.nim +++ b/compiler/ast.nim @@ -1793,7 +1793,7 @@ when false: for i in 0 ..< n.safeLen: if n[i].containsNil: return true -template hasDestructor*(t: PType): bool = tfHasAsgn in t.flags +template hasDestructor*(t: PType): bool = {tfHasAsgn, tfHasOwned} * t.flags != {} template incompleteType*(t: PType): bool = t.sym != nil and {sfForward, sfNoForward} * t.sym.flags == {sfForward} |