MCPcopy Create free account
hub / github.com/csmith-project/csmith / OutputActualParamExpression

Function OutputActualParamExpression

src/FunctionInvocationUser.cpp:413–424  ·  view source on GitHub ↗

* */

Source from the content-addressed store, hash-verified

411 *
412 */
413static int
414OutputActualParamExpression(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 *

Callers

nothing calls this directly

Calls 1

OutputMethod · 0.45

Tested by

no test coverage detected