Searched defs:AssignmentCounter (Results 1 – 2 of 2) sorted by relevance
110 struct AssignmentCounter { in test() struct111 int* counter; in test()113 constexpr AssignmentCounter(int* counter_) : counter(counter_) {} in test() function114 constexpr AssignmentCounter& operator=(const AssignmentCounter&) { ++*counter; return *this; } in test()
123 struct AssignmentCounter { in test() struct124 int* counter; in test()126 constexpr AssignmentCounter(int* counter_) : counter(counter_) {} in test() argument127 constexpr AssignmentCounter& operator=(const AssignmentCounter&) { ++*counter; return *this; } in test()