Creates an optional uninitialized. No-throw
| 212 | // Creates an optional<T> uninitialized. |
| 213 | // No-throw |
| 214 | optional_base() |
| 215 | : |
| 216 | m_initialized(false) {} |
| 217 | |
| 218 | // Creates an optional<T> uninitialized. |
| 219 | // No-throw |
nothing calls this directly
no test coverage detected