Searched defs:AssignmentCounter (Results 1 – 2 of 2) sorted by relevance
109 struct AssignmentCounter { in test() struct110 int* counter; in test()112 constexpr AssignmentCounter(int* counter_) : counter(counter_) {} in test() argument113 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()