diff options
author | def <dennis@felsin9.de> | 2015-07-11 14:39:19 +0200 |
---|---|---|
committer | def <dennis@felsin9.de> | 2016-01-25 19:10:37 +0100 |
commit | c50b5b62ef5ae51467754f7c1db49c4cbeaee5f8 (patch) | |
tree | 3c40a179da95227dd7308d57965809f7e2dacb44 /compiler | |
parent | 4246f660ea4ba7bab05811662eb53a87cc0cc049 (diff) | |
download | Nim-c50b5b62ef5ae51467754f7c1db49c4cbeaee5f8.tar.gz |
Fix a few deprecation warnings
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/canonicalizer.nim | 4 |
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", |