From 34cd22ba72e6b93b4f095d6424206627137d0ec6 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Sat, 4 May 2013 18:10:43 +0300 Subject: [PATCH] remove some more references of containerID after merging --- compiler/rodread.nim | 3 --- 1 file changed, 3 deletions(-) diff --git a/compiler/rodread.nim b/compiler/rodread.nim index 3e04a755dc..562eaebab9 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("^()")