From f2497919986f450a14b188e80b5d5499e5fa6465 Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Mon, 14 Oct 2024 14:47:35 -0400 Subject: [PATCH] fix 32bit --- base/Base.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/Base.jl b/base/Base.jl index fbd5db6913c526..3662d3be841a2e 100644 --- a/base/Base.jl +++ b/base/Base.jl @@ -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")