| 192 | |
| 193 | struct Moveable { |
| 194 | Moveable(int id) : moved(false), copied(false), id(id) { } |
| 195 | Moveable(Moveable&& o) MOODYCAMEL_NOEXCEPT : moved(true), copied(o.copied), id(o.id) { } |
| 196 | void operator=(Moveable&& o) MOODYCAMEL_NOEXCEPT { moved = true; copied = o.copied; id = o.id; } |
| 197 | bool moved; |
nothing calls this directly
no outgoing calls
no test coverage detected