| 311 | |
| 312 | template<> |
| 313 | __template_static FloatComplex |
| 314 | convertMultiplier(ComplexLong arg) |
| 315 | { |
| 316 | return floatComplex( |
| 317 | static_cast<float>(arg.re), static_cast<float>(arg.imag)); |
| 318 | } |
| 319 | |
| 320 | template<> |
| 321 | __template_static DoubleComplex |
nothing calls this directly
no test coverage detected