summary refs log tree commit diff stats
path: root/compiler/condsyms.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-08-28 23:48:42 +0200
committerAraq <rumpf_a@web.de>2014-08-28 23:48:42 +0200
commit5946747970f31742bc58bdd2fbe174b8b5cdc678 (patch)
treee1a429032294174db53820999f284cef7651847c /compiler/condsyms.nim
parentc68c42a237c09af4a23fcf207aa51f9f12f5e917 (diff)
downloadNim-5946747970f31742bc58bdd2fbe174b8b5cdc678.tar.gz
updated the compiler to use the new symbol names
Diffstat (limited to 'compiler/condsyms.nim')
-rw-r--r--compiler/condsyms.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/condsyms.nim b/compiler/condsyms.nim
index 28288ed39..938cc5df2 100644
--- a/compiler/condsyms.nim
+++ b/compiler/condsyms.nim
@@ -14,7 +14,7 @@ import
 
 # We need to use a PStringTable here as defined symbols are always guaranteed
 # to be style insensitive. Otherwise hell would break lose.
-var gSymbols: PStringTable
+var gSymbols: StringTableRef
 
 proc defineSymbol*(symbol: string) = 
   gSymbols[symbol] = "true"