Searched defs:move_only (Results 1 – 4 of 4) sorted by relevance
17 struct move_only { struct18 move_only() {} in move_only() function26 void test(move_only) {} in test() argument
20 class move_only class25 move_only(move_only&&) {} in move_only() argument26 move_only& operator=(move_only&&) {return *this;} in operator =() argument28 move_only() {} in move_only() function in move_only34 void test(move_only) {} in test() argument
39 class move_only class45 move_only(move_only&&) {++move_only_constructed;} in move_only() argument46 move_only& operator=(move_only&&) {return *this;} in operator =() argument48 move_only() {++move_only_constructed;} in move_only() function in move_only
3 class move_only { move_only(const move_only&) = delete; move_only(move_only&&); }; class