Searched refs:move_only_structure (Results 1 – 1 of 1) sorted by relevance
197 struct move_only_structure { struct198 move_only_structure(){} in move_only_structure() argument199 move_only_structure(move_only_structure&&){} in move_only_structure() function200 move_only_structure& operator=(move_only_structure&&) { return *this; } in operator =() argument203 move_only_structure(const move_only_structure&);204 move_only_structure& operator=(const move_only_structure&);207 struct visitor_returning_move_only_type: boost::static_visitor<move_only_structure> {209 move_only_structure operator()(const T&) const { in operator ()()210 return move_only_structure(); in operator ()()216 move_only_structure mo; in run_move_only()[all …]