Searched defs:ConstructionCounting (Results 1 – 1 of 1) sorted by relevance
7548 struct ConstructionCounting { struct7549 ConstructionCounting() { ++default_ctor_calls; } in ConstructionCounting() function7550 ~ConstructionCounting() { ++dtor_calls; } in ~ConstructionCounting() argument7551 ConstructionCounting(const ConstructionCounting&) { ++copy_ctor_calls; } in ConstructionCounting() argument7552 ConstructionCounting(ConstructionCounting&&) noexcept { ++move_ctor_calls; } in ConstructionCounting() function7553 ConstructionCounting& operator=(const ConstructionCounting&) { in operator =() argument7557 ConstructionCounting& operator=(ConstructionCounting&&) noexcept { in operator =() argument7579 int ConstructionCounting::default_ctor_calls = 0; argument