From 3ff2e9f5caa6ec8e5cfacb8b04ca5e55955fe2e5 Mon Sep 17 00:00:00 2001 From: Simeon Schaub Date: Sat, 15 Aug 2020 01:27:51 +0200 Subject: [PATCH] add compat entry for sincospi --- base/special/trig.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/base/special/trig.jl b/base/special/trig.jl index 0ebf2c7f6c358..3aa075e09342f 100644 --- a/base/special/trig.jl +++ b/base/special/trig.jl @@ -864,6 +864,9 @@ end sincospi(x) Simultaneously compute `sinpi(x)` and `cospi(x)`, where the `x` is in radians. + +!!! compat "Julia 1.6" + This function requires Julia 1.6 or later. """ function sincospi(x::T) where T<:AbstractFloat if !isfinite(x)