Searched defs:TrackMove (Results 1 – 2 of 2) sorted by relevance
40 struct TrackMove struct42 TrackMove() : value(0), moved_from(false) { } in TrackMove() function43 explicit TrackMove(int v) : value(v), moved_from(false) { } in TrackMove() function44 TrackMove(TrackMove const& other) : value(other.value), moved_from(false) { } in TrackMove() function45 TrackMove(TrackMove&& other) : value(other.value), moved_from(false) { in TrackMove() argument48 TrackMove& operator=(TrackMove const& other) { in operator =() argument53 TrackMove& operator=(TrackMove&& other) { in operator =() argument60 int value;61 bool moved_from;
66 struct TrackMove struct68 TrackMove() : value(0), moved_from(false) { } in TrackMove() argument69 explicit TrackMove(int v) : value(v), moved_from(false) { } in TrackMove() function70 TrackMove(TrackMove const& other) : value(other.value), moved_from(false) { } in TrackMove() argument71 TrackMove(TrackMove&& other) : value(other.value), moved_from(false) { in TrackMove() argument74 TrackMove& operator=(TrackMove const& other) { in operator =() argument79 TrackMove& operator=(TrackMove&& other) { in operator =() argument86 int value;87 bool moved_from;