Yellow Fish
Results
2
issues of
Yellow Fish
 There seems to be a bug in this line. `headerPtr = &allocationHeader;` Should be changed to `*headerPtr = allocationHeader;` otherwise the padding value is not recorded in the header...
As discussed in readme.md, the pool allocator initialize freeNodeList with O(N) complexity. However before any free() is invoked, it behaves like a LinearAllocator. So we could just leave the freeNodeList...