Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
|
A stack allocator where memory can only be deallocated in order (LIFO). More...
#include <StackAllocator.hpp>
Public Member Functions | |
bool | Initialize (size_t size) |
bool | Allocate (size_t size) |
A stack allocator where memory can only be deallocated in order (LIFO).
Memory in a stack allocator is allocated sequentially, and can only be deallocated in reverse order (LIFO).