| 1567 | //----------------------------------------------------------------------------- |
| 1568 | |
| 1569 | void CodeGenerator::InsertTemplateGuardBegin(const FunctionDecl* stmt) |
| 1570 | { |
| 1571 | if(stmt->isTemplateInstantiation() and stmt->isFunctionTemplateSpecialization()) { |
| 1572 | InsertInstantiationPoint(GetSM(*stmt), stmt->getPointOfInstantiation()); |
| 1573 | mOutputFormatHelper.InsertIfDefTemplateGuard(); |
| 1574 | } |
| 1575 | } |
| 1576 | //----------------------------------------------------------------------------- |
| 1577 | |
| 1578 | void CodeGenerator::InsertTemplateGuardEnd(const FunctionDecl* stmt) |
nothing calls this directly
no test coverage detected