| 2973 | ~ThreadLocal() { ThreadLocalRegistry::OnThreadLocalDestroyed(this); } |
| 2974 | |
| 2975 | T* pointer() { return GetOrCreateValue(); } |
| 2976 | const T* pointer() const { return GetOrCreateValue(); } |
| 2977 | const T& get() const { return *pointer(); } |
| 2978 | void set(const T& value) { *pointer() = value; } |
no outgoing calls
no test coverage detected