diff options
author | Araq <rumpf_a@web.de> | 2012-06-03 10:11:01 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-06-03 10:11:01 +0200 |
commit | 70c283ac6490907940510f643c6e7d9923e93aa7 (patch) | |
tree | 5da5d3252f00e7453d437a7c9d4245592f79f8cf /compiler/semdata.nim | |
parent | 5f527769eed6aafec5fe2f59ec0af31d198cb5f2 (diff) | |
parent | ab18654e593085feb92e8f93f5c575d6ce62cda4 (diff) | |
download | Nim-70c283ac6490907940510f643c6e7d9923e93aa7.tar.gz |
Merge branch 'master' of github.com:Araq/Nimrod
Diffstat (limited to 'compiler/semdata.nim')
-rwxr-xr-x | compiler/semdata.nim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/semdata.nim b/compiler/semdata.nim index f97da4717..81e45f71c 100755 --- a/compiler/semdata.nim +++ b/compiler/semdata.nim @@ -73,7 +73,6 @@ type filename*: string # the module's filename userPragmas*: TStrTable evalContext*: PEvalContext - slurpedFiles*: seq[string] var gGenericsCache: PGenericsCache # save for modularity @@ -153,7 +152,6 @@ proc newContext(module: PSym, nimfile: string): PContext = result.filename = nimfile result.includedFiles = initIntSet() initStrTable(result.userPragmas) - result.slurpedFiles = @[] if optSymbolFiles notin gGlobalOptions: # re-usage of generic instantiations across module boundaries is # very nice for code size: |