| 2019 | ThreadLocal() |
| 2020 | : key_(CreateKey()), default_factory_(new DefaultValueHolderFactory()) {} |
| 2021 | explicit ThreadLocal(const T& value) |
| 2022 | : key_(CreateKey()), |
| 2023 | default_factory_(new InstanceValueHolderFactory(value)) {} |
| 2024 | |
| 2025 | ~ThreadLocal() { |
| 2026 | // Destroys the managed object for the current thread, if any. |