Searched defs:MoveOnlyInt (Results 1 – 1 of 1) sorted by relevance
213 struct MoveOnlyInt { in test_swap() struct214 MoveOnlyInt(int i) : fInt(i) {} in test_swap() function215 MoveOnlyInt(MoveOnlyInt&& that) : fInt(that.fInt) {} in test_swap() argument216 bool operator==(int i) { return fInt == i; } in test_swap()217 int fInt; in test_swap()