| 58 | } |
| 59 | |
| 60 | static inline FloatComplex |
| 61 | operator+(FloatComplex a, FloatComplex b) |
| 62 | { |
| 63 | return floatComplex(CREAL(a) + CREAL(b), CIMAG(b) + CIMAG(b)); |
| 64 | } |
| 65 | |
| 66 | static inline FloatComplex |
| 67 | operator-(FloatComplex a, FloatComplex b) |
nothing calls this directly
no test coverage detected