We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5011e40 commit 4309e03Copy full SHA for 4309e03
base/compiler/inferencestate.jl
@@ -88,7 +88,7 @@ mutable struct InferenceState
88
end
89
90
min_valid = src.min_world
91
- max_valid = src.max_world == (typemax(UInt)%Int) ?
+ max_valid = src.max_world == typemax(UInt) ?
92
get_world_counter() : src.max_world
93
frame = new(
94
params, result, linfo,
src/jltypes.c
@@ -2088,7 +2088,7 @@ void jl_init_types(void) JL_GC_DISABLED
2088
"inlineable",
2089
"propagate_inbounds",
2090
"pure"),
2091
- jl_svec(17,
+ jl_svec(18,
2092
jl_array_any_type,
2093
jl_any_type,
2094
0 commit comments