Fix merge issue for out of data CI run. (#730)

This commit is contained in:
Matthew Parkinson
2025-01-10 08:37:33 +00:00
committed by GitHub
parent 9e632047de
commit 0fbc325a0a

View File

@@ -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<std::pair<address_t, size_t>, 16> reserved_ranges;
inline static stl::Array<stl::Pair<address_t, size_t>, 16> reserved_ranges;
// Lock for the reserved ranges.
inline static FlagWord reserved_ranges_lock{};