From 58f0503f6d4d313bb4a14eaa6f906cd1688cc897 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 26 Oct 2019 11:09:20 +0300 Subject: [PATCH] cc.v: bring back implicit fn declaration --- vlib/compiler/cc.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/compiler/cc.v b/vlib/compiler/cc.v index 0fa19bc0aa..4225ab8236 100644 --- a/vlib/compiler/cc.v +++ b/vlib/compiler/cc.v @@ -135,7 +135,7 @@ fn (v mut V) cc() { } if v.pref.ccompiler != 'msvc' && v.os != .freebsd { - //a << '-Werror=implicit-function-declaration' + a << '-Werror=implicit-function-declaration' } for f in v.generate_hotcode_reloading_compiler_flags() {