summary refs log tree commit diff stats
path: root/compiler/vm.nim
diff options
context:
space:
mode:
authorHans Raaf <hara@oderwat.de>2016-01-18 18:12:07 +0100
committerHans Raaf <hara@oderwat.de>2016-01-18 18:14:50 +0100
commit063448668934e49fba7d772bb0d5ffdaf702d049 (patch)
tree16a5f94ee51aa6abf7ad98a67be43778c4a1cc6c /compiler/vm.nim
parent13c98222df26925938bdb8bb55d9af900cc5a228 (diff)
downloadNim-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/vm.nim')
-rw-r--r--compiler/vm.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/vm.nim b/compiler/vm.nim
index 80c2c0fbf..b537700fa 100644
--- a/compiler/vm.nim
+++ b/compiler/vm.nim
@@ -15,7 +15,7 @@ const debugEchoCode = false
 import ast except getstr
 
 import
-  strutils, astalgo, msgs, vmdef, vmgen, nimsets, types, passes, unsigned,
+  strutils, astalgo, msgs, vmdef, vmgen, nimsets, types, passes,
   parser, vmdeps, idents, trees, renderer, options, transf, parseutils,
   vmmarshal