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() argument44 TrackMove(TrackMove const& other) : value(other.value), moved_from(false) { } in TrackMove() argument45 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;
68 struct TrackMove struct70 TrackMove() : value(0), moved_from(false) { } in TrackMove() function71 explicit TrackMove(int v) : value(v), moved_from(false) { } in TrackMove() function72 TrackMove(TrackMove const& other) : value(other.value), moved_from(false) { } in TrackMove() argument73 TrackMove(TrackMove&& other) : value(other.value), moved_from(false) { in TrackMove() argument76 TrackMove& operator=(TrackMove const& other) { in operator =() argument81 TrackMove& operator=(TrackMove&& other) { in operator =() argument88 int value;89 bool moved_from;