* */
| 411 | * |
| 412 | */ |
| 413 | static int |
| 414 | OutputActualParamExpression(const Expression *expr, std::ostream *pOut) |
| 415 | { |
| 416 | std::ostream &out = *pOut; |
| 417 | if (needcomma.back()) { |
| 418 | out << ", "; |
| 419 | } |
| 420 | needcomma.back() = true; |
| 421 | expr->Output(out); |
| 422 | // for MSVC: must return something to be able to pass to a "map" function |
| 423 | return 0; |
| 424 | } |
| 425 | |
| 426 | /* |
| 427 | * |