diff options
author | Araq <rumpf_a@web.de> | 2011-04-23 23:51:39 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-04-23 23:51:39 +0200 |
commit | 4591ab0f12e6ad8fb1e1bbd748a138081313ef33 (patch) | |
tree | bc725112e65181fcf1bd67b6f9eca59a9a0ce4b1 /compiler | |
parent | 86e1408a39f13a34100f2bd090fdc2f17ae2a6ba (diff) | |
download | Nim-4591ab0f12e6ad8fb1e1bbd748a138081313ef33.tar.gz |
c2nim compiles again
Diffstat (limited to 'compiler')
-rwxr-xr-x | compiler/c2nim/cparse.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/c2nim/cparse.nim b/compiler/c2nim/cparse.nim index d2b7caff6..64dd340cf 100755 --- a/compiler/c2nim/cparse.nim +++ b/compiler/c2nim/cparse.nim @@ -62,7 +62,7 @@ proc newParserOptions*(): PParserOptions = result.flags = {} result.dynlibSym = "" result.header = "" - result.toMangle = newStringTable() + result.toMangle = newStringTable(modeCaseSensitive) proc setOption*(parserOptions: PParserOptions, key: string, val=""): bool = result = true |