Searched defs:CountCopyAndMove (Results 1 – 1 of 1) sorted by relevance
344 struct CountCopyAndMove { struct345 static int Move;346 static int Copy;347 CountCopyAndMove() {} in CountCopyAndMove() argument349 CountCopyAndMove(const CountCopyAndMove &) { Copy++; } in CountCopyAndMove() function350 CountCopyAndMove &operator=(const CountCopyAndMove &) { in operator =()354 CountCopyAndMove(CountCopyAndMove &&) { Move++; } in CountCopyAndMove() function355 CountCopyAndMove &operator=(const CountCopyAndMove &&) { in operator =()