Searched defs:LifetimeCounter (Results 1 – 1 of 1) sorted by relevance
22 struct LifetimeCounter { struct23 explicit LifetimeCounter(size_t* count) : count_(count) { (*count)++; } in LifetimeCounter() argument24 ~LifetimeCounter() { (*count_)--; } in ~LifetimeCounter()26 size_t* const count_;