Skip to content

Commit

Permalink
Fix merge issue for out of data CI run. (#730)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjp41 authored Jan 10, 2025
1 parent 9e63204 commit 0fbc325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/snmalloc/pal/pal_windows.h
Original file line number Diff line number Diff line change
Expand Up @@ -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{};
Expand Down

0 comments on commit 0fbc325

Please sign in to comment.