| 7758 | |
| 7759 | |
| 7760 | ResultType Line::ExpressionToPostfix(ArgStruct &aArg) |
| 7761 | { |
| 7762 | ExprTokenType *infix = NULL; |
| 7763 | ResultType result = ExpressionToPostfix(aArg, infix); |
| 7764 | // This approach produces smaller code than using RAII in the function below: |
| 7765 | free(infix); |
| 7766 | return result; |
| 7767 | } |
| 7768 | |
| 7769 | ResultType Line::ExpressionToPostfix(ArgStruct &aArg, ExprTokenType *&aInfix) |
| 7770 | // Returns OK or FAIL. |
no test coverage detected