remove unsused OsPlatform.nimVM (#17953)

This commit is contained in:
Timothee Cour
2021-05-06 21:55:46 -07:00
committed by GitHub
parent 9d86639a0b
commit 0b4b9b3ad0

View File

@@ -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