Searched defs:MoveOnlyInt (Results 1 – 1 of 1) sorted by relevance
106 struct MoveOnlyInt { in test_swap() struct107 MoveOnlyInt(int i) : fInt(i) {} in test_swap() function108 MoveOnlyInt(MoveOnlyInt&& that) : fInt(that.fInt) {} in test_swap() argument109 bool operator==(int i) { return fInt == i; } in test_swap()110 int fInt; in test_swap()