diff options
author | Araq <rumpf_a@web.de> | 2014-08-23 01:43:49 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-23 01:43:49 +0200 |
commit | 2f43fdb8379acd783beee58b1b2c8225a486a70c (patch) | |
tree | 3381ea28e5c2709bafeaf31eb8a7cc9b15c8b8b2 /compiler/idgen.nim | |
parent | fc0fda14ae1caf83d1b39029bebb702ff306b1e0 (diff) | |
download | Nim-2f43fdb8379acd783beee58b1b2c8225a486a70c.tar.gz |
renamefest
Diffstat (limited to 'compiler/idgen.nim')
-rw-r--r-- | compiler/idgen.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/idgen.nim b/compiler/idgen.nim index d932e3d9d..7f137b885 100644 --- a/compiler/idgen.nim +++ b/compiler/idgen.nim @@ -53,7 +53,7 @@ proc saveMaxIds*(project: string) = f.close() proc loadMaxIds*(project: string) = - var f: TFile + var f: File if open(f, project.toGid, fmRead): var line = newStringOfCap(20) if f.readLine(line): |