| 1832 | : default_factory_(new InstanceValueHolderFactory(value)) {} |
| 1833 | |
| 1834 | ~ThreadLocal() { ThreadLocalRegistry::OnThreadLocalDestroyed(this); } |
| 1835 | |
| 1836 | T* pointer() { return GetOrCreateValue(); } |
| 1837 | const T* pointer() const { return GetOrCreateValue(); } |
nothing calls this directly
no outgoing calls
no test coverage detected