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