Skip to content

Commit bba5f9b

Browse files
Removed unneccessary indent
Co-authored-by: David Müller-Widmann <[email protected]>
1 parent 2911312 commit bba5f9b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/erf.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ for f in (:erf, :erfc)
2525
end
2626
end
2727

28-
_erfc(x::Float64) = ccall((:erfc, libopenlibm), Float64, (Float64,), x)
29-
_erfc(x::Float32) = ccall((:erfcf, libopenlibm), Float32, (Float32,), x)
30-
_erfc(x::Float16) = Float16(_erfc(Float32(x)))
28+
_erfc(x::Float64) = ccall((:erfc, libopenlibm), Float64, (Float64,), x)
29+
_erfc(x::Float32) = ccall((:erfcf, libopenlibm), Float32, (Float32,), x)
30+
_erfc(x::Float16) = Float16(_erfc(Float32(x)))
3131

3232
for f in (:erfcx, :erfi, :dawson, :faddeeva)
3333
internalf = Symbol(:_, f)

0 commit comments

Comments
 (0)