! \return singleton of the store */
| 62 | } |
| 63 | /*! \return singleton of the store */ |
| 64 | static ThreadLocalStore<T> *Singleton() { |
| 65 | static ThreadLocalStore<T> inst; |
| 66 | return &inst; |
| 67 | } |
| 68 | /*! |
| 69 | * \brief register str for internal deletion |
| 70 | * \param str the string pointer |
nothing calls this directly
no outgoing calls
no test coverage detected