| 405 | double x; |
| 406 | double y; |
| 407 | vec_2d operator+(const vec_2d& rhs) const |
| 408 | { |
| 409 | return { x + rhs.x, y + rhs.y }; |
| 410 | }; |
| 411 | vec_2d operator/(double scalar) const |
| 412 | { |
| 413 | double scalar_d = static_cast<double>(scalar); |
nothing calls this directly
no outgoing calls
no test coverage detected