Skip to content

Commit 0dada17

Browse files
authored
fix invalidations when loading ForwardDiff.jl (#47091)
1 parent 1471cd9 commit 0dada17

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

base/namedtuple.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function NamedTuple{names}(nt::NamedTuple) where {names}
111111
types = Tuple{(fieldtype(nt, idx[n]) for n in 1:length(idx))...}
112112
Expr(:new, :(NamedTuple{names, $types}), Any[ :(getfield(nt, $(idx[n]))) for n in 1:length(idx) ]...)
113113
else
114-
length_names = length(names)::Integer
114+
length_names = length(names::Tuple)
115115
types = Tuple{(fieldtype(typeof(nt), names[n]) for n in 1:length_names)...}
116116
NamedTuple{names, types}(map(Fix1(getfield, nt), names))
117117
end

stdlib/InteractiveUtils/src/macros.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function recursive_dotcalls!(ex, args, i=1)
2424
end
2525
end
2626
(start, branches) = ex.head === :. ? (1, ex.args[2].args) : (2, ex.args)
27-
length_branches = length(branches)::Integer
27+
length_branches = length(branches)::Int
2828
for j in start:length_branches
2929
branch, i = recursive_dotcalls!(branches[j], args, i)
3030
branches[j] = branch
@@ -43,7 +43,7 @@ function gen_call_with_extracted_types(__module__, fcn, ex0, kws=Expr[])
4343
end
4444
i = findlast(a->(Meta.isexpr(a, :kw) || Meta.isexpr(a, :parameters)), ex0.args[1].args)
4545
args = copy(ex0.args[1].args)
46-
insert!(args, (isnothing(i) ? 2 : i+1), ex0.args[2])
46+
insert!(args, (isnothing(i) ? 2 : 1+i::Int), ex0.args[2])
4747
ex0 = Expr(:call, args...)
4848
end
4949
if ex0.head === :. || (ex0.head === :call && ex0.args[1] !== :.. && string(ex0.args[1])[1] == '.')

0 commit comments

Comments
 (0)