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