Searched defs:CountCopyAndMove (Results 1 – 1 of 1) sorted by relevance
327 struct CountCopyAndMove { struct328 static int Move;329 static int Copy;330 CountCopyAndMove() {} in CountCopyAndMove() argument332 CountCopyAndMove(const CountCopyAndMove &) { Copy++; } in CountCopyAndMove() function333 CountCopyAndMove &operator=(const CountCopyAndMove &) { in operator =()337 CountCopyAndMove(CountCopyAndMove &&) { Move++; } in CountCopyAndMove() function338 CountCopyAndMove &operator=(const CountCopyAndMove &&) { in operator =()