Commit 9f672b87 authored by Cianciosa, Mark's avatar Cianciosa, Mark
Browse files

Second attempt to fix the CI runner. Remove unused include.

parent f3a69b25
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -18,7 +18,6 @@ template<typename T>
using complex_type = complex<T>;

#else
#include <iostream>
#include <complex>
#include <cfloat>
#include <cmath>
@@ -1583,7 +1582,7 @@ namespace special {
#endif
    complex_type<T> erfi(const complex_type<T> z) {
//  Avoids NaN instead of doing i<T>*z and -i*temp;
        const complex_type<T> temp = erf_complex<T> (complex_type<T> (-imag<T> (z), real<T> (z)));
        const complex_type<T> temp = erf_complex<T> (complex_type<T> (-imag(z), real(z)));
        return complex_type<T> (imag(temp), -real(temp));
    }
}