| 3496 | } |
| 3497 | |
| 3498 | void reset() { |
| 3499 | if( nullableValue ) |
| 3500 | nullableValue->~T(); |
| 3501 | nullableValue = nullptr; |
| 3502 | } |
| 3503 | |
| 3504 | T& operator*() { return *nullableValue; } |
| 3505 | T const& operator*() const { return *nullableValue; } |
nothing calls this directly
no outgoing calls
no test coverage detected