| 1828 | class ThreadLocal : public ThreadLocalBase { |
| 1829 | public: |
| 1830 | ThreadLocal() : default_factory_(new DefaultValueHolderFactory()) {} |
| 1831 | explicit ThreadLocal(const T& value) |
| 1832 | : default_factory_(new InstanceValueHolderFactory(value)) {} |
| 1833 |
nothing calls this directly
no outgoing calls
no test coverage detected