Skip to content

Commit

Permalink
remove lgamma(Float16) definition (#48675)
Browse files Browse the repository at this point in the history
  • Loading branch information
oscardssmith authored Feb 16, 2023
1 parent 80dc135 commit 75215fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/math.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1489,7 +1489,7 @@ include("special/log.jl")
# Float16 definitions

for func in (:sin,:cos,:tan,:asin,:acos,:atan,:cosh,:tanh,:asinh,:acosh,
:atanh,:log,:log2,:log10,:sqrt,:lgamma,:log1p)
:atanh,:log,:log2,:log10,:sqrt,:log1p)
@eval begin
$func(a::Float16) = Float16($func(Float32(a)))
$func(a::ComplexF16) = ComplexF16($func(ComplexF32(a)))
Expand Down

0 comments on commit 75215fa

Please sign in to comment.