From f1bbdb7d45571cd189b88262a5a8dbb405d83d00 Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Sun, 25 Nov 2012 22:16:08 +0100 Subject: [PATCH] Use the correct default cv-qualifier on locals --- parser.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/parser.c b/parser.c index 833333a..48b01a4 100644 --- a/parser.c +++ b/parser.c @@ -2297,7 +2297,13 @@ static bool parse_statement(parser_t *parser, ast_block *block, ast_expression * !strcmp(parser_tokval(parser), "const") || !strcmp(parser_tokval(parser), "var")) { - int cvq = parser_tokval(parser)[0] == 'c' ? CV_CONST : CV_VAR; + int cvq; + if (parser_tokval(parser)[0] == 'c') + cvq = CV_CONST; + else if (parser_tokval(parser)[0] == 'v') + cvq = CV_VAR; + else + cvq = CV_NONE; if (!block) { parseerror(parser, "cannot declare a local variable here"); -- 2.39.2