diff options
Diffstat (limited to 'thirdparty/bullet/BulletDynamics/ConstraintSolver/btBatchedConstraints.cpp')
| -rw-r--r-- | thirdparty/bullet/BulletDynamics/ConstraintSolver/btBatchedConstraints.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/thirdparty/bullet/BulletDynamics/ConstraintSolver/btBatchedConstraints.cpp b/thirdparty/bullet/BulletDynamics/ConstraintSolver/btBatchedConstraints.cpp index 27f76b8425..0f5ed1c2ce 100644 --- a/thirdparty/bullet/BulletDynamics/ConstraintSolver/btBatchedConstraints.cpp +++ b/thirdparty/bullet/BulletDynamics/ConstraintSolver/btBatchedConstraints.cpp @@ -852,7 +852,7 @@ static void setupSpatialGridBatchesMt(  		memHelper.addChunk((void**)&constraintRowBatchIds, sizeof(int) * numConstraintRows);  		size_t scratchSize = memHelper.getSizeToAllocate();  		// if we need to reallocate -		if (scratchMemory->capacity() < scratchSize) +		if (static_cast<size_t>(scratchMemory->capacity()) < scratchSize)  		{  			// allocate 6.25% extra to avoid repeated reallocs  			scratchMemory->reserve(scratchSize + scratchSize / 16); |