Home
last modified time | relevance | path

Searched refs:move_only_structure (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/libs/variant/test/
Drvalue_test.cpp197 struct move_only_structure { struct
198 move_only_structure(){} in move_only_structure() argument
199 move_only_structure(move_only_structure&&){} in move_only_structure() function
200 move_only_structure& operator=(move_only_structure&&) { return *this; } in operator =() argument
203 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 …]