From 0fbc325a0a79f061b57aaa664ea1437438269467 Mon Sep 17 00:00:00 2001 From: Matthew Parkinson Date: Fri, 10 Jan 2025 08:37:33 +0000 Subject: [PATCH] Fix merge issue for out of data CI run. (#730) --- src/snmalloc/pal/pal_windows.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/snmalloc/pal/pal_windows.h b/src/snmalloc/pal/pal_windows.h index 6a8fc38..00017a7 100644 --- a/src/snmalloc/pal/pal_windows.h +++ b/src/snmalloc/pal/pal_windows.h @@ -52,7 +52,7 @@ namespace snmalloc // A list of reserved ranges, used to handle lazy commit on readonly pages. // We currently only need one, so haven't implemented a backup if the // initial 16 is insufficient. - inline static std::array, 16> reserved_ranges; + inline static stl::Array, 16> reserved_ranges; // Lock for the reserved ranges. inline static FlagWord reserved_ranges_lock{};