19#include "pw_allocator/block/small_block_base.h"
21namespace pw::allocator {
28class SmallBlock :
public SmallBlockBase<SmallBlock, uint32_t, 0> {
30 friend SmallBlockBase<SmallBlock, uint32_t, 0>;
31 constexpr explicit SmallBlock(
size_t outer_size)
32 : SmallBlockBase(outer_size) {}
Definition: small_block.h:28