* */
| 605 | * |
| 606 | */ |
| 607 | FunctionInvocation::~FunctionInvocation(void) |
| 608 | { |
| 609 | std::vector<const Expression*>::const_iterator i; |
| 610 | for (i = param_value.begin(); i != param_value.end(); ++i) { |
| 611 | delete (*i); |
| 612 | } |
| 613 | param_value.clear(); |
| 614 | |
| 615 | if (op_flags) |
| 616 | delete op_flags; |
| 617 | } |
| 618 | |
| 619 | /////////////////////////////////////////////////////////////////////////////// |
| 620 |