| 290 | } |
| 291 | |
| 292 | void CodeHolder::reset(ResetPolicy reset_policy) noexcept { |
| 293 | if (is_initialized()) { |
| 294 | CodeHolder_detach_emitters(this); |
| 295 | CodeHolder_reset_env_and_attached_logger_and_eh(this); |
| 296 | CodeHolder_reset_sections_and_containers(this, reset_policy); |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | // CodeHolder - Attach / Detach |
| 301 | // ============================ |
no test coverage detected