diff options
author | Zahary Karadjov <zahary@gmail.com> | 2013-05-04 18:10:43 +0300 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2013-05-04 18:10:43 +0300 |
commit | 34cd22ba72e6b93b4f095d6424206627137d0ec6 (patch) | |
tree | c6b1e7acfd811fe019cf037c5b2e7ac3aadaa6ca /compiler | |
parent | 3f1e9b3a25d6cc9b6daddcc345b9002cbb7b8b78 (diff) | |
download | Nim-34cd22ba72e6b93b4f095d6424206627137d0ec6.tar.gz |
remove some more references of containerID after merging
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/rodread.nim | 3 |
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("^()") |