Searched defs:MyData (Results 1 – 1 of 1) sorted by relevance
424 struct MyData { struct425 const int data;426 static int copy_constructed;427 static int move_constructed;428 explicit MyData(int d) : data(d) {} in MyData() argument429 MyData(const MyData& other) : data(other.data) { copy_constructed++; } in MyData() function430 MyData(MyData&& other) : data(other.data) { move_constructed++; } in MyData() function