Searched defs:MyData (Results 1 – 1 of 1) sorted by relevance
423 struct MyData { struct424 const int data;425 static int copy_constructed;426 static int move_constructed;427 explicit MyData(int d) : data(d) {} in MyData() function428 MyData(const MyData& other) : data(other.data) { copy_constructed++; } in MyData() function429 MyData(MyData&& other) : data(other.data) { move_constructed++; } in MyData() function