We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a83787a commit 77270b4Copy full SHA for 77270b4
src/extrapolation/filled.jl
@@ -30,7 +30,7 @@ extrapolate(itp::AbstractInterpolation{T,N,IT}, fillvalue) where {T,N,IT} = Fill
30
@inline function (etp::FilledExtrapolation{T,N})(x::Vararg{Number,N}) where {T,N}
31
itp = parent(etp)
32
coefs = coefficients(itp)
33
- Tret = promote_type(eltype(coefs), typeof.(x)...)
+ Tret = promote_type(eltype(coefs), typeof.(x)...,T)
34
if checkbounds(Bool, itp, x...)
35
@inbounds itp(x...)
36
else
0 commit comments