* */
| 427 | * |
| 428 | */ |
| 429 | static void |
| 430 | OutputExpressionVector(const vector<const Expression*> &var, std::ostream &out) |
| 431 | { |
| 432 | needcomma.push_back(false); |
| 433 | for_each(var.begin(), var.end(), |
| 434 | std::bind2nd(std::ptr_fun(OutputActualParamExpression), &out)); |
| 435 | needcomma.pop_back(); |
| 436 | } |
| 437 | |
| 438 | /* |
| 439 | * |