Skip to content

Commit f1f3d1f

Browse files
authored
Fix deprecation warning (#219)
1 parent f06b776 commit f1f3d1f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ReverseDiff"
22
uuid = "37e2e3b7-166d-5795-8a7a-e32c996b4267"
3-
version = "1.14.4"
3+
version = "1.14.5"
44

55
[deps]
66
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"

src/derivatives/broadcast.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ end
139139

140140
## A generalization of the broadcasting approach in ReverseDiff for general functions
141141

142-
@inline function ∇broadcast(f::F, args::Vararg{<:Any}) where {F}
142+
@inline function ∇broadcast(f::F, args::Vararg{Any}) where {F}
143143
inds, targs, untracked = splitargs(args)
144144
N = length(targs)
145145
D = promote_type(getouttype.(targs)...)

0 commit comments

Comments
 (0)