Searched defs:Counting (Results 1 – 1 of 1) sorted by relevance
27 struct Counting { struct31 …constexpr Counting(int& copies_ctr, int& moves_ctr) : times_copied(&copies_ctr), times_moved(&move… in Counting() argument33 …constexpr Counting(const Counting& rhs) : times_copied(rhs.times_copied), times_moved(rhs.times_mo… in Counting() argument36 …constexpr Counting(Counting&& rhs) : times_copied(rhs.times_copied), times_moved(rhs.times_moved) { in Counting() argument