We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 453a7d5 commit 55049f5Copy full SHA for 55049f5
1 file changed
src/backend/backend.h
@@ -129,8 +129,9 @@ namespace snmalloc
129
#if defined(OPEN_ENCLAVE)
130
// Single global buddy allocator is used on open enclave due to
131
// the limited address space.
132
- using GlobalR = GlobalRange<StatsR<SmallBuddyRange<
133
- LargeBuddyRange<EmptyRange, bits::BITS - 1, bits::BITS - 1, Pagemap>>>>;
+ using StatsR = StatsRange<SmallBuddyRange<
+ LargeBuddyRange<EmptyRange, bits::BITS - 1, bits::BITS - 1, Pagemap>>>;
134
+ using GlobalR = GlobalRange<StatsR>;
135
using ObjectRange = GlobalR;
136
using GlobalMetaRange = ObjectRange;
137
#else
0 commit comments