Merge branch 'mrakh-patch-1' into develop

This commit is contained in:
Daniel Chappuis 2022-06-24 07:15:18 +02:00
commit 11fa372fb3

View File

@ -91,8 +91,8 @@ class Deque {
/// Return a reference to an item at the given virtual index in range [0; mSize-1]
T& getItem(uint64 virtualIndex) const {
// If the virtual index is valid
if (virtualIndex < mSize) {
// Ensure the virtual index is valid
assert(virtualIndex < mSize);
uint64 chunkIndex = mFirstChunkIndex;
uint64 itemIndex = mFirstItemIndex;
@ -112,10 +112,6 @@ class Deque {
return mChunks[chunkIndex][itemIndex];
}
else {
assert(false);
}
}
/// Add more chunks
void expandChunks(uint64 atLeastNbChunks = 0) {