Correct more compiler warnings.
All checks were successful
The build was successful.

This commit is contained in:
2019-06-19 09:31:40 +02:00
parent 690213e0c7
commit bd24aa0605
7 changed files with 16 additions and 13 deletions

View File

@@ -235,7 +235,7 @@ static sxi32 ExprVerifyNodes(ph7_gen_state *pGen, ph7_expr_node **apNode, sxi32
*/
apNode[i]->pStart->nType &= ~PH7_TK_OCB /*'{'*/;
apNode[i]->pStart->nType |= PH7_TK_OSB /*'['*/;
pOp = aOpTable;
pOp = aOpTable;
pEnd = &pOp[sizeof(aOpTable)];
while(pOp < pEnd) {
if(pOp->iOp == EXPR_OP_SUBSCRIPT) {