Skip to content

Commit 4309e03

Browse files
committed
rebase fixup
1 parent 5011e40 commit 4309e03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

base/compiler/inferencestate.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ mutable struct InferenceState
8888
end
8989

9090
min_valid = src.min_world
91-
max_valid = src.max_world == (typemax(UInt)%Int) ?
91+
max_valid = src.max_world == typemax(UInt) ?
9292
get_world_counter() : src.max_world
9393
frame = new(
9494
params, result, linfo,

src/jltypes.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2088,7 +2088,7 @@ void jl_init_types(void) JL_GC_DISABLED
20882088
"inlineable",
20892089
"propagate_inbounds",
20902090
"pure"),
2091-
jl_svec(17,
2091+
jl_svec(18,
20922092
jl_array_any_type,
20932093
jl_any_type,
20942094
jl_any_type,

0 commit comments

Comments
 (0)