mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-07-06 19:38:41 +03:00
use uint8_t bit fields, and improve portability of page_flags type
This commit is contained in:
parent
72d1ab80c3
commit
26c27fbf58
2 changed files with 14 additions and 13 deletions
|
@ -13,7 +13,7 @@ terms of the MIT license. A copy of the license can be found in the file
|
|||
// Empty page used to initialize the small free pages array
|
||||
const mi_page_t _mi_page_empty = {
|
||||
0, false, false, false, false, 0, 0,
|
||||
{ 0 },
|
||||
{ { 0 }, false },
|
||||
NULL, // free
|
||||
#if MI_SECURE
|
||||
0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue