| 587 | |
| 588 | protected: |
| 589 | static void |
| 590 | _ensure_initialized(self_type *ptr) |
| 591 | { |
| 592 | if (!ptr->Initialized()) [[unlikely]] { |
| 593 | ptr->_initialize(); |
| 594 | } |
| 595 | } |
| 596 | |
| 597 | virtual void |
| 598 | _initialize() |
nothing calls this directly
no test coverage detected