| 233 | std::atomic<int>* deinit_count_ptr; |
| 234 | |
| 235 | ThreadSafeCounter(int v, std::atomic<int>* init_ptr, std::atomic<int>* deinit_ptr) |
| 236 | : value(v), init_count_ptr(init_ptr), deinit_count_ptr(deinit_ptr) {} |
| 237 | }; |
| 238 | |
| 239 | // Global pointers for the current test counters |
nothing calls this directly
no outgoing calls
no test coverage detected