From 77272da718b189bed3e7a35e7d083431caf9f93a Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Mon, 26 Nov 2012 02:12:50 +0000 Subject: [PATCH] opval is asserted .. need (void) to hide warning when NDEBUG --- parser.c | 1 + 1 file changed, 1 insertion(+) diff --git a/parser.c b/parser.c index ea84205..bb41c70 100644 --- a/parser.c +++ b/parser.c @@ -2103,6 +2103,7 @@ static bool parse_switch(parser_t *parser, ast_block *block, ast_expression **ou lex_ctx ctx = parser_ctx(parser); (void)block; /* not touching */ + (void)opval; /* parse over the opening paren */ if (!parser_next(parser) || parser->tok != '(') { -- 2.39.2