| 89 | } |
| 90 | |
| 91 | Complex Complex::operator-(const Complex &other) const |
| 92 | { |
| 93 | return Complex(r - other.r, i + other.i); |
| 94 | } |
| 95 | |
| 96 | Complex Complex::operator*(const Complex &other) const |
| 97 | { |
nothing calls this directly
no outgoing calls
no test coverage detected