| 84 | } |
| 85 | |
| 86 | Complex Complex::operator+(const Complex &other) const |
| 87 | { |
| 88 | return Complex(r + other.r, i + other.i); |
| 89 | } |
| 90 | |
| 91 | Complex Complex::operator-(const Complex &other) const |
| 92 | { |
nothing calls this directly
no outgoing calls
no test coverage detected