| 2597 | const T* pointer() const { return GetOrCreateValue(); } |
| 2598 | const T& get() const { return *pointer(); } |
| 2599 | void set(const T& value) { *pointer() = value; } |
| 2600 | |
| 2601 | private: |
| 2602 | // Holds a value of type T. |
no outgoing calls
no test coverage detected