| 653 | bool endif = false; |
| 654 | |
| 655 | ConditionScope(Generator &gen, const std::string &condition) : gen(gen) { |
| 656 | endif = gen.if_condition(condition); |
| 657 | } |
| 658 | |
| 659 | ConditionScope(const ConditionScope &) = delete; |
| 660 | ConditionScope(ConditionScope &&) = delete; |
nothing calls this directly
no test coverage detected