diff options
author | Araq <rumpf_a@web.de> | 2014-03-22 02:52:06 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-03-22 02:52:06 +0100 |
commit | e53fc91282bc8a5dabc4f12e041fa6ce5400c007 (patch) | |
tree | be7fcdd03635a91596ab813643f3b293db7d30e8 /compiler/idgen.nim | |
parent | fb5ece805ff5b752ec2e9dc0c49fc34d5abdc6a9 (diff) | |
download | Nim-e53fc91282bc8a5dabc4f12e041fa6ce5400c007.tar.gz |
fixed tuples in a static context; preparations for correct compile time evaluation of integral ops
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 c4f5f2a9e..d932e3d9d 100644 --- a/compiler/idgen.nim +++ b/compiler/idgen.nim @@ -19,7 +19,7 @@ const when debugIds: import intsets - var usedIds = InitIntSet() + var usedIds = initIntSet() proc registerID*(id: PIdObj) = when debugIds: |