diff options
Diffstat (limited to 'compiler/rodimpl.nim')
-rw-r--r-- | compiler/rodimpl.nim | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/rodimpl.nim b/compiler/rodimpl.nim index 70893a600..f5f689939 100644 --- a/compiler/rodimpl.nim +++ b/compiler/rodimpl.nim @@ -221,10 +221,6 @@ proc encodeType(g: ModuleGraph, t: PType, result: var string) = if t.lockLevel.ord != UnspecifiedLockLevel.ord: add(result, '\14') encodeVInt(t.lockLevel.int16, result) - if t.destructor != nil and t.destructor.id != 0: - add(result, '\15') - encodeVInt(t.destructor.id, result) - pushSym(w, t.destructor) for a in t.attachedOps: add(result, '\16') if a == nil: |