| 41 | { return !(lhs==rhs); } |
| 42 | |
| 43 | const ap::complex ap::operator+(const ap::complex& lhs) |
| 44 | { return lhs; } |
| 45 | |
| 46 | const ap::complex ap::operator-(const ap::complex& lhs) |
| 47 | { return ap::complex(-lhs.x, -lhs.y); } |
nothing calls this directly
no outgoing calls
no test coverage detected