| 48 | |
| 49 | template<> |
| 50 | __template_static FloatComplex |
| 51 | makeScalar(double val) |
| 52 | { |
| 53 | FloatComplex c; |
| 54 | |
| 55 | c.s[0] = static_cast<float>(val); |
| 56 | c.s[1] = 0; |
| 57 | |
| 58 | return c; |
| 59 | } |
| 60 | |
| 61 | template<> |
| 62 | __template_static DoubleComplex |
nothing calls this directly
no outgoing calls
no test coverage detected