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 d38ae2e commit bc83f78Copy full SHA for bc83f78
src/deprecations.jl
@@ -27,7 +27,7 @@ function interpolate!(::Type{TWeights}, A, it::IT, gt::GT) where {TWeights,IT<:D
27
Base.depwarn("interpolate!($TWeights, A, $it, $gt) is deprecated, use interpolate!($TWeights, A, $bcs)", :interpolate)
28
interpolate!(TWeights, A, bcs)
29
end
30
-function interpolate!(A, it::IT, gt::GT) where {TWeights,IT<:DimSpec{BSpline},GT<:DimSpec{GridType}}
+function interpolate!(A, it::IT, gt::GT) where {IT<:DimSpec{BSpline},GT<:DimSpec{GridType}}
31
bcs = create_bcs(it, gt)
32
Base.depwarn("interpolate!(A, $it, $gt) is deprecated, use interpolate!(A, $bcs)", :interpolate)
33
interpolate!(A, bcs)
0 commit comments