Creates an optional uninitialized. No-throw
| 237 | // Creates an optional<T> uninitialized. |
| 238 | // No-throw |
| 239 | optional_base() |
| 240 | : |
| 241 | m_initialized(false) {} |
| 242 | |
| 243 | // Creates an optional<T> uninitialized. |
| 244 | // No-throw |
nothing calls this directly
no test coverage detected