cparse: removed stale expressionStatement forward declare

This commit is contained in:
CPunch 2023-12-29 18:01:33 -06:00
parent e0455902b0
commit cd37cfdae5
1 changed files with 0 additions and 1 deletions

View File

@ -103,7 +103,6 @@ static int expressionPrecedence(CParseState *pstate, int needed, Precedence prec
static int expression(CParseState *pstate, int needed, bool forceNeeded);
static void statement(CParseState *pstate);
static void parseFunction(CParseState *pstate, FunctionType type);
static void expressionStatement(CParseState *pstate);
static ParseRule *getRule(CTokenType type);
static CObjFunction *endCompiler(CParseState *pstate);