diff options
author | Hans Raaf <hara@oderwat.de> | 2016-01-18 18:12:07 +0100 |
---|---|---|
committer | Hans Raaf <hara@oderwat.de> | 2016-01-18 18:14:50 +0100 |
commit | 063448668934e49fba7d772bb0d5ffdaf702d049 (patch) | |
tree | 16a5f94ee51aa6abf7ad98a67be43778c4a1cc6c /compiler/vmgen.nim | |
parent | 13c98222df26925938bdb8bb55d9af900cc5a228 (diff) | |
download | Nim-063448668934e49fba7d772bb0d5ffdaf702d049.tar.gz |
Fixed deprecation warnings while Nim compiles.
I just removed unsigned and changed a writeLn() call to writeLine() to avoid the remaining deprecation warnings.
Diffstat (limited to 'compiler/vmgen.nim')
-rw-r--r-- | compiler/vmgen.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/vmgen.nim b/compiler/vmgen.nim index 75c1378e5..e4435294f 100644 --- a/compiler/vmgen.nim +++ b/compiler/vmgen.nim @@ -28,7 +28,7 @@ # this copy depends on the involved types. import - unsigned, strutils, ast, astalgo, types, msgs, renderer, vmdef, + strutils, ast, astalgo, types, msgs, renderer, vmdef, trees, intsets, rodread, magicsys, options, lowerings from os import splitFile |