From f8bc893972a795ebd78cd5a22cb59771830070c3 Mon Sep 17 00:00:00 2001 From: F1ssi0N Date: Wed, 24 Jul 2019 17:08:19 +0100 Subject: [PATCH] Re-add the case for msvc now that it is a valid comp-time option --- vlib/os/os.v | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vlib/os/os.v b/vlib/os/os.v index 2a0767fd48..bf17571766 100644 --- a/vlib/os/os.v +++ b/vlib/os/os.v @@ -596,9 +596,9 @@ pub fn user_os() string { $if dragonfly { return 'dragonfly' } - // $if msvc { - // return 'windows' - // } + $if msvc { + return 'windows' + } return 'unknown' }