| 156 | std::atomic<int>* deinit_count_ptr; |
| 157 | |
| 158 | ThreadSafeCounter(int v, std::atomic<int>* init_ptr, std::atomic<int>* deinit_ptr) |
| 159 | : value(v), init_count_ptr(init_ptr), deinit_count_ptr(deinit_ptr) {} |
| 160 | }; |
| 161 | |
| 162 | // Global pointers for the current test counters |
nothing calls this directly
no outgoing calls
no test coverage detected