From aacc35db19500bb2beb79128ecc3cc0f87d57ce9 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Mon, 11 May 2020 15:19:17 +0200 Subject: [PATCH] pref: do not enable globals by default --- vlib/v/pref/default.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/pref/default.v b/vlib/v/pref/default.v index beb43f6bd7..9c775ffefb 100644 --- a/vlib/v/pref/default.v +++ b/vlib/v/pref/default.v @@ -70,7 +70,7 @@ pub fn (mut p Preferences) fill_with_defaults() { } } } - p.enable_globals = true + p.enable_globals = false } fn default_c_compiler() string {