diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-05-06 21:55:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-07 06:55:46 +0200 |
commit | 0b4b9b3ad08c7745ee41c1386a35ed9399b96afd (patch) | |
tree | 73878f47e3ac9dc3a4adc259426462620f177122 | |
parent | 9d86639a0b65acdc7842ef66ad8d2f97a992e4b8 (diff) | |
download | Nim-0b4b9b3ad08c7745ee41c1386a35ed9399b96afd.tar.gz |
remove unsused OsPlatform.nimVM (#17953)
-rw-r--r-- | lib/system/platforms.nim | 3 |
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 |