fix a warning and remove unused variables

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-11-19 19:44:26 +01:00
parent 8ac689c03a
commit b72900214b

View file

@ -1720,9 +1720,6 @@ static bool parse_return(parser_t *parser, ast_block *block, ast_expression **ou
static bool parse_break_continue(parser_t *parser, ast_block *block, ast_expression **out, bool is_continue)
{
ast_expression *exp = NULL;
ast_return *ret = NULL;
lex_ctx ctx = parser_ctx(parser);
if (!parser_next(parser) || parser->tok != ';') {
@ -1733,7 +1730,7 @@ static bool parse_break_continue(parser_t *parser, ast_block *block, ast_express
if (!parser_next(parser))
parseerror(parser, "parse error");
*out = ast_breakcont_new(ctx, is_continue);
*out = (ast_expression*)ast_breakcont_new(ctx, is_continue);
return true;
}