diff options
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 |