Skip to content

Commit

Permalink
fix 32bit
Browse files Browse the repository at this point in the history
  • Loading branch information
IanButterworth committed Oct 14, 2024
1 parent 8ed7c61 commit f249791
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/Base.jl
Original file line number Diff line number Diff line change
Expand Up @@ -425,8 +425,8 @@ include("weakkeydict.jl")
include("scopedvalues.jl")

# used by task.jl
const task_times_per_thread = ScopedValues.ScopedValue{Vector{UInt}}()
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}}()

# metaprogramming
include("meta.jl")
Expand Down

0 comments on commit f249791

Please sign in to comment.