| 1821 | : default_factory_(new InstanceValueHolderFactory(value)) {} |
| 1822 | |
| 1823 | ~ThreadLocal() { ThreadLocalRegistry::OnThreadLocalDestroyed(this); } |
| 1824 | |
| 1825 | T* pointer() { return GetOrCreateValue(); } |
| 1826 | const T* pointer() const { return GetOrCreateValue(); } |
nothing calls this directly
no outgoing calls
no test coverage detected