summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2016-02-06 15:22:19 +0100
committerAndreas Rumpf <rumpf_a@web.de>2016-02-06 15:22:19 +0100
commit03f4aa23d767c3d4a37980377d757b4df90d6778 (patch)
tree1de50e0aacb472e29b15859cb86b7f564540a026 /compiler
parent86b233dff9fb5fc3085219f3749b8e1646113e64 (diff)
parent62955292f2b677e14a32a8339cfc41f0eab19507 (diff)
downloadNim-03f4aa23d767c3d4a37980377d757b4df90d6778.tar.gz
Merge pull request #3106 from def-/deprecation
Fix a few deprecation warnings
Diffstat (limited to 'compiler')
-rw-r--r--compiler/canonicalizer.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/canonicalizer.nim b/compiler/canonicalizer.nim
index dc6445035..9afe4ab10 100644
--- a/compiler/canonicalizer.nim
+++ b/compiler/canonicalizer.nim
@@ -11,7 +11,7 @@
 
 import strutils, db_sqlite, md5
 
-var db: TDbConn
+var db: DbConn
 
 # We *hash* the relevant information into 128 bit hashes. This should be good
 # enough to prevent any collisions.
@@ -33,7 +33,7 @@ type
 const
   cb64 = [
     "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N",
-    "O", "P", "Q", "R", "S", "T" "U", "V", "W", "X", "Y", "Z",
+    "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z",
     "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n",
     "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z",
     "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",