diff --git a/mem_arena/src/lib.rs b/mem_arena/src/lib.rs index 3f8c87b..6031071 100644 --- a/mem_arena/src/lib.rs +++ b/mem_arena/src/lib.rs @@ -19,6 +19,7 @@ fn alignment_offset(addr: usize, alignment: usize) -> usize { /// size (the large allocation threshold) are given their own block. /// /// The block size and large allocation threshold size are configurable. +#[derive(Debug)] pub struct MemArena { blocks: Vec>, block_size: usize,