| 18 | class Vector2 { |
| 19 | public: |
| 20 | Vector2(float x, float y) : x(x), y(y) { print_created(this, toString()); } |
| 21 | Vector2(const Vector2 &v) : x(v.x), y(v.y) { print_copy_created(this); } |
| 22 | Vector2(Vector2 &&v) noexcept : x(v.x), y(v.y) { |
| 23 | print_move_created(this); |
no test coverage detected