summary refs log tree commit diff stats
path: root/compiler/rodread.nim
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/rodread.nim')
-rw-r--r--compiler/rodread.nim3
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/rodread.nim b/compiler/rodread.nim
index 3e04a755d..562eaebab 100644
--- a/compiler/rodread.nim
+++ b/compiler/rodread.nim
@@ -1009,9 +1009,6 @@ proc writeType(f: TFile; t: PType) =
   if t.align != 2:
     f.write('=')
     f.write($t.align)
-  if t.containerID != 0: 
-    f.write('@')
-    f.write($t.containerID)
   for i in countup(0, sonsLen(t) - 1): 
     if t.sons[i] == nil: 
       f.write("^()")