| 1817 | class ThreadLocal : public ThreadLocalBase { |
| 1818 | public: |
| 1819 | ThreadLocal() : default_factory_(new DefaultValueHolderFactory()) {} |
| 1820 | explicit ThreadLocal(const T& value) |
| 1821 | : default_factory_(new InstanceValueHolderFactory(value)) {} |
| 1822 |
nothing calls this directly
no outgoing calls
no test coverage detected