| 1576 | //----------------------------------------------------------------------------- |
| 1577 | |
| 1578 | void CodeGenerator::InsertTemplateGuardEnd(const FunctionDecl* stmt) |
| 1579 | { |
| 1580 | if(stmt->isTemplateInstantiation() and stmt->isFunctionTemplateSpecialization()) { |
| 1581 | mOutputFormatHelper.InsertEndIfTemplateGuard(); |
| 1582 | } |
| 1583 | } |
| 1584 | //----------------------------------------------------------------------------- |
| 1585 | |
| 1586 | void CodeGenerator::InsertArg(const CoroutineBodyStmt* stmt) |
nothing calls this directly
no test coverage detected