| 4582 | } |
| 4583 | |
| 4584 | void reset() { |
| 4585 | if( nullableValue ) |
| 4586 | nullableValue->~T(); |
| 4587 | nullableValue = nullptr; |
| 4588 | } |
| 4589 | |
| 4590 | T& operator*() { return *nullableValue; } |
| 4591 | T const& operator*() const { return *nullableValue; } |
nothing calls this directly
no outgoing calls
no test coverage detected