Constructor
| 32 | |
| 33 | // Constructor |
| 34 | Components::Components(MemoryAllocator& allocator, size_t componentDataSize, size_t alignmentMarginSize) |
| 35 | : mMemoryAllocator(allocator), mNbComponents(0), mComponentDataSize(componentDataSize), |
| 36 | mAlignmentMarginSize(alignmentMarginSize), mNbAllocatedComponents(0), mBuffer(nullptr), mMapEntityToComponentIndex(allocator), |
| 37 | mDisabledStartIndex(0) { |
| 38 | |
| 39 | } |
| 40 | |
| 41 | Components::~Components() { |
| 42 |
nothing calls this directly
no outgoing calls
no test coverage detected