Searched defs:ConstructionCounting (Results 1 – 1 of 1) sorted by relevance
7589 struct ConstructionCounting { struct7590 ConstructionCounting() { ++default_ctor_calls; } in ConstructionCounting() function7591 ~ConstructionCounting() { ++dtor_calls; } in ~ConstructionCounting() argument7592 ConstructionCounting(const ConstructionCounting&) { ++copy_ctor_calls; } in ConstructionCounting() argument7593 ConstructionCounting(ConstructionCounting&&) noexcept { ++move_ctor_calls; } in ConstructionCounting() argument7594 ConstructionCounting& operator=(const ConstructionCounting&) { in operator =() argument7598 ConstructionCounting& operator=(ConstructionCounting&&) noexcept { in operator =() argument7620 int ConstructionCounting::default_ctor_calls = 0; argument