We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ed7c61 commit f249791Copy full SHA for f249791
base/Base.jl
@@ -425,8 +425,8 @@ include("weakkeydict.jl")
425
include("scopedvalues.jl")
426
427
# used by task.jl
428
-const task_times_per_thread = ScopedValues.ScopedValue{Vector{UInt}}()
429
-const sleep_times_per_thread = ScopedValues.ScopedValue{Vector{UInt}}()
+const task_times_per_thread = ScopedValues.ScopedValue{Vector{UInt64}}() # time_ns always returns UInt64
+const sleep_times_per_thread = ScopedValues.ScopedValue{Vector{UInt64}}()
430
431
# metaprogramming
432
include("meta.jl")
0 commit comments