summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorZahary Karadjov <zahary@gmail.com>2013-05-04 18:10:43 +0300
committerZahary Karadjov <zahary@gmail.com>2013-05-04 18:10:43 +0300
commit34cd22ba72e6b93b4f095d6424206627137d0ec6 (patch)
treec6b1e7acfd811fe019cf037c5b2e7ac3aadaa6ca
parent3f1e9b3a25d6cc9b6daddcc345b9002cbb7b8b78 (diff)
downloadNim-34cd22ba72e6b93b4f095d6424206627137d0ec6.tar.gz
remove some more references of containerID after merging
-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("^()")