diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2020-01-19 23:30:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-19 23:30:45 +0100 |
commit | 41555ca86f70771d71e2385629e76db092f0eabb (patch) | |
tree | f86f0cf0a9fc0b2074053693e24c964aeffe8f0c /compiler/liftdestructors.nim | |
parent | 6f3476d39ce9b2f621976ec8b05078485befad7e (diff) | |
download | Nim-41555ca86f70771d71e2385629e76db092f0eabb.tar.gz |
fixes #13110 (#13197)
Diffstat (limited to 'compiler/liftdestructors.nim')
-rw-r--r-- | compiler/liftdestructors.nim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/liftdestructors.nim b/compiler/liftdestructors.nim index 64dc3ad45..3671f62b8 100644 --- a/compiler/liftdestructors.nim +++ b/compiler/liftdestructors.nim @@ -846,7 +846,6 @@ proc isEmptyContainer(g: ModuleGraph, t: PType): bool = (t.kind == tyArray and lengthOrd(g.config, t[0]) == 0) or (t.kind == tySequence and t[0].kind == tyError) - proc createTypeBoundOps(g: ModuleGraph; c: PContext; orig: PType; info: TLineInfo) = ## In the semantic pass this is called in strategic places ## to ensure we lift assignment, destructors and moves properly. |