Searched defs:ConstructionCounting (Results 1 – 1 of 1) sorted by relevance
7529 struct ConstructionCounting { struct7530 ConstructionCounting() { ++default_ctor_calls; } in ConstructionCounting() argument7531 ~ConstructionCounting() { ++dtor_calls; } in ~ConstructionCounting() argument7532 ConstructionCounting(const ConstructionCounting&) { ++copy_ctor_calls; } in ConstructionCounting() argument7533 ConstructionCounting(ConstructionCounting&&) noexcept { ++move_ctor_calls; } in ConstructionCounting() function7534 ConstructionCounting& operator=(const ConstructionCounting&) { in operator =() argument7538 ConstructionCounting& operator=(ConstructionCounting&&) noexcept { in operator =() argument7560 int ConstructionCounting::default_ctor_calls = 0; argument