formatting

This commit is contained in:
Joseph Poirier 2015-06-20 06:16:30 -05:00
parent 44ec8b0ccf
commit 6e1c3aa71d
3 changed files with 10 additions and 10 deletions

View file

@ -1569,7 +1569,8 @@ int ExpressionParse(struct ParseState *Parser, struct Value **Result)
case TokenColon: case TokenColon:
TernaryDepth--; TernaryDepth--;
break; break;
default: break; default:
break;
} }
} }

View file

@ -446,7 +446,6 @@ void VariableStackPop(struct ParseState *Parser, struct Value *Var)
if (Var->ValOnHeap) { if (Var->ValOnHeap) {
if (Var->Val != NULL) if (Var->Val != NULL)
HeapFreeMem(Parser->pc, Var->Val); HeapFreeMem(Parser->pc, Var->Val);
Success = HeapPopStack(Parser->pc, Var, sizeof(struct Value)); /* free from heap */ Success = HeapPopStack(Parser->pc, Var, sizeof(struct Value)); /* free from heap */
} else if (Var->ValOnStack) } else if (Var->ValOnStack)
Success = HeapPopStack(Parser->pc, Var, Success = HeapPopStack(Parser->pc, Var,