Skip to content

Commit d9dfab7

Browse files
authored
Merge branch 'JuliaMath:master' into convg_check
2 parents 7298256 + 75d01ee commit d9dfab7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Math/Math.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ end
4646
computes sincos(sum(xs)) where xs are sorted by absolute value
4747
Doing this is much more accurate than the naive sincos(sum(xs))
4848
"""
49-
function sincos_sum(xs::Vararg{T, N})::T where {T<:Base.IEEEFloat, N}
49+
function sincos_sum(xs::Vararg{T, N})::NTuple{2, T} where {T<:Base.IEEEFloat, N}
5050
n, y = rem_pio2_sum(xs...)
5151
n &= 3
5252
si, co = sincos_kernel(y)

0 commit comments

Comments
 (0)