Merge branch 'patch-1' of github.com:mrakh/reactphysics3d into mrakh-patch-1

This commit is contained in:
Daniel Chappuis 2022-06-24 07:14:52 +02:00
commit d0ab634f4e

View File

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