Searched refs:ConstructionCounting (Results 1 – 1 of 1) sorted by relevance
7596 struct ConstructionCounting { struct7597 ConstructionCounting() { ++default_ctor_calls; } in ConstructionCounting() argument7598 ~ConstructionCounting() { ++dtor_calls; } in ~ConstructionCounting() argument7599 ConstructionCounting(const ConstructionCounting&) { ++copy_ctor_calls; } in ConstructionCounting() function7600 ConstructionCounting(ConstructionCounting&&) noexcept { ++move_ctor_calls; } in ConstructionCounting() argument7601 ConstructionCounting& operator=(const ConstructionCounting&) { in operator =() argument7605 ConstructionCounting& operator=(ConstructionCounting&&) noexcept { in operator =() argument7627 int ConstructionCounting::default_ctor_calls = 0; argument7628 int ConstructionCounting::dtor_calls = 0;7629 int ConstructionCounting::copy_ctor_calls = 0;[all …]