From 47115fd579c58a52b7636848d6af16066ff4880f Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 14 Oct 2019 01:19:49 +0300 Subject: [PATCH] compiler: remove setting of v.pref.building_v flag in compiler/main.v . It is not needed anymore. (#2330) --- compiler/main.v | 1 - 1 file changed, 1 deletion(-) diff --git a/compiler/main.v b/compiler/main.v index a09acccce0..8b0606c91c 100755 --- a/compiler/main.v +++ b/compiler/main.v @@ -57,7 +57,6 @@ fn main() { } // Construct the V object from command line arguments mut v := compiler.new_v(args) - v.pref.building_v = true if v.pref.is_verbose { println(args) }