xo-reader2: enable alloc headers for parser stack

This commit is contained in:
Roland Conybeare 2026-02-16 11:03:36 -05:00
commit ec004393b9

View file

@ -11,6 +11,13 @@
namespace xo {
namespace mm {
/** @brief per-alloc header
*
* Appears immediately before each allocation when
* ArenaConfig.store_header_flag_ is set.
*
* See AllocInfo.hpp for encoding of @ref repr_
**/
struct AllocHeader {
using repr_type = std::uintptr_t;
using size_type = std::size_t;