summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2021-05-06 21:55:46 -0700
committerGitHub <noreply@github.com>2021-05-07 06:55:46 +0200
commit0b4b9b3ad08c7745ee41c1386a35ed9399b96afd (patch)
tree73878f47e3ac9dc3a4adc259426462620f177122
parent9d86639a0b65acdc7842ef66ad8d2f97a992e4b8 (diff)
downloadNim-0b4b9b3ad08c7745ee41c1386a35ed9399b96afd.tar.gz
remove unsused OsPlatform.nimVM (#17953)
-rw-r--r--lib/system/platforms.nim3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/system/platforms.nim b/lib/system/platforms.nim
index 59a1333f1..50b818956 100644
--- a/lib/system/platforms.nim
+++ b/lib/system/platforms.nim
@@ -40,7 +40,7 @@ type
   OsPlatform* {.pure.} = enum ## the OS this program will run on.
     none, dos, windows, os2, linux, morphos, skyos, solaris,
     irix, netbsd, freebsd, openbsd, aix, palmos, qnx, amiga,
-    atari, netware, macos, macosx, haiku, android, js, nimVM,
+    atari, netware, macos, macosx, haiku, android, js,
     standalone, nintendoswitch
 
 const
@@ -66,7 +66,6 @@ const
               elif defined(haiku): OsPlatform.haiku
               elif defined(android): OsPlatform.android
               elif defined(js): OsPlatform.js
-              elif defined(nimVM): OsPlatform.nimVM
               elif defined(standalone): OsPlatform.standalone
               elif defined(nintendoswitch): OsPlatform.nintendoswitch
               else: OsPlatform.none
-0700 committer Kartik Agaram <vc@akkartik.com> 2018-09-30 23:12:54 -0700 4624' href='/akkartik/mu/commit/subx/028translate.cc?h=main&id=1dcd9350ce975fb05ed99a5ffc864b0d65c8bab3'>1dcd9350 ^
c442a5ad ^
1dcd9350 ^

















55b4627d ^
c442a5ad ^
55b4627d ^

c442a5ad ^
1dcd9350 ^
a988da65 ^
1dcd9350 ^
a988da65 ^

8950915a ^
55b4627d ^


b141a448 ^
1dcd9350 ^
5ece2953 ^
1dcd9350 ^

1f56ac64 ^
1dcd9350 ^

ef52bbf9 ^




68ccf4d3 ^
6dff1f28 ^



68ccf4d3 ^




3b798ea2 ^
1f56ac64 ^
3b798ea2 ^
b141a448 ^

3b798ea2 ^
b141a448 ^

















ef52bbf9 ^
8188bbbc ^
b141a448 ^

8188bbbc ^
b141a448 ^

8188bbbc ^
b141a448 ^



1f56ac64 ^
b141a448 ^




1f56ac64 ^
b141a448 ^








1bbbf14f ^
1f56ac64 ^
83c67014 ^
1f56ac64 ^






83c67014 ^
a49bc413 ^
1f56ac64 ^
a49bc413 ^
1f56ac64 ^
83c67014 ^
4a99a6e0 ^
1f56ac64 ^



83c67014 ^
1f56ac64 ^
21d8241b ^
1f56ac64 ^
21d8241b ^









dc9a126e ^
1f56ac64 ^
a49bc413 ^

bcf92ad2 ^


1f56ac64 ^


b141a448 ^
262f6ea8 ^
b141a448 ^

3b798ea2 ^
1f56ac64 ^





b20d9ad3 ^
b20d9ad3 ^

a49bc413 ^
1f56ac64 ^




7b686a02 ^
b141a448 ^

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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213