From eca4e2c3092f902809539b6ed5c9b681006fe771 Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Sat, 19 Nov 2016 10:05:58 +0000 Subject: [PATCH] Unused globals even if they have an initial value should produce unused diagnostic --- parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser.cpp b/parser.cpp index 51f7e1e..dbf70f4 100644 --- a/parser.cpp +++ b/parser.cpp @@ -6226,7 +6226,7 @@ bool parser_finish(parser_t *parser, const char *output) if (!ast_istype(it, ast_value)) continue; asvalue = (ast_value*)it; - if (!asvalue->m_uses && !asvalue->m_hasvalue && asvalue->m_vtype != TYPE_FUNCTION) { + if (!asvalue->m_uses && asvalue->m_vtype != TYPE_FUNCTION) { retval = retval && !compile_warning(asvalue->m_context, WARN_UNUSED_VARIABLE, "unused global: `%s`", asvalue->m_name); } -- 2.39.2