Skip to content

Commit f249791

Browse files
fix 32bit
1 parent 8ed7c61 commit f249791

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

base/Base.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -425,8 +425,8 @@ include("weakkeydict.jl")
425425
include("scopedvalues.jl")
426426

427427
# used by task.jl
428-
const task_times_per_thread = ScopedValues.ScopedValue{Vector{UInt}}()
429-
const sleep_times_per_thread = ScopedValues.ScopedValue{Vector{UInt}}()
428+
const task_times_per_thread = ScopedValues.ScopedValue{Vector{UInt64}}() # time_ns always returns UInt64
429+
const sleep_times_per_thread = ScopedValues.ScopedValue{Vector{UInt64}}()
430430

431431
# metaprogramming
432432
include("meta.jl")

0 commit comments

Comments
 (0)