| 64 | } |
| 65 | |
| 66 | static inline FloatComplex |
| 67 | operator-(FloatComplex a, FloatComplex b) |
| 68 | { |
| 69 | return floatComplex(CREAL(a) - CREAL(b), CIMAG(b) - CIMAG(b)); |
| 70 | } |
| 71 | |
| 72 | static inline FloatComplex |
| 73 | operator*(FloatComplex a, FloatComplex b) |
nothing calls this directly
no test coverage detected