| 2406 | const T* pointer() const { return GetOrCreateValue(); } |
| 2407 | const T& get() const { return *pointer(); } |
| 2408 | void set(const T& value) { *pointer() = value; } |
| 2409 | |
| 2410 | private: |
| 2411 | // Holds a value of type T. |
no outgoing calls
no test coverage detected