summary refs log tree commit diff stats
path: root/compiler/vmgen.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/vmgen.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/vmgen.nim')
-rw-r--r--compiler/vmgen.nim2
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
hor Araq <rumpf_a@web.de> 2014-11-04 08:38:56 +0100 committer Araq <rumpf_a@web.de> 2014-11-04 08:38:56 +0100 documented nimfix' href='/ahoang/Nim/commit/install.txt?h=devel&id=1f63d1c76e733812e5e61d81e83429f853511fe7'>1f63d1c76 ^
db4f617af ^



1f63d1c76 ^
db4f617af ^
8c671d22d ^
1f63d1c76 ^
99bcc233c ^
4d4b3b1c0 ^
ae0e5604f ^


ceb30d7a0 ^

ae0e5604f ^




db4f617af ^




8c671d22d ^

49d810f34 ^

db4f617af ^




6ce462c58 ^

db4f617af ^








ff4a69b62 ^

db4f617af ^
300430fbb ^
e27e873b7 ^
31bb4311e ^
e27e873b7 ^

8c671d22d ^
e27e873b7 ^
49d810f34 ^








ceb30d7a0 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88