Creates an optional uninitialized. No-throw
| 145 | // Creates an optional<T> uninitialized. |
| 146 | // No-throw |
| 147 | optional_base() |
| 148 | : |
| 149 | m_initialized(false) {} |
| 150 | |
| 151 | // Creates an optional<T> uninitialized. |
| 152 | // No-throw |
nothing calls this directly
no test coverage detected