| 60 | |
| 61 | template<> |
| 62 | __template_static DoubleComplex |
| 63 | makeScalar(double val) |
| 64 | { |
| 65 | DoubleComplex c; |
| 66 | |
| 67 | c.s[0] = val; |
| 68 | c.s[1] = 0; |
| 69 | |
| 70 | return c; |
| 71 | } |
| 72 | |
| 73 | template<typename T> |
| 74 | static T |
nothing calls this directly
no outgoing calls
no test coverage detected