Searched defs:move_only (Results 1 – 7 of 7) sorted by relevance
17 class move_only class22 move_only(move_only&&) {} in move_only() argument23 move_only& operator=(move_only&&) {return *this;} in operator =() argument25 move_only() {} in move_only() function in move_only31 void test(move_only) {} in test() argument
18 class move_only class31 move_only(move_only&&) {} in move_only() argument32 move_only& operator=(move_only&&) {} in operator =() argument38 move_only() {} in move_only() function in move_only44 void test(move_only) {} in test() argument
15 class move_only class28 move_only(move_only&&) {} in move_only() function in move_only29 move_only& operator=(move_only&&) {} in operator =() argument35 move_only() {} in move_only() function in move_only41 void test(move_only) {} in test() argument
39 class move_only class47 move_only(move_only&&) {++move_only_constructed;} in move_only() function in move_only48 move_only& operator=(move_only&&) {return *this;} in operator =() argument50 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