compile fixes
This commit is contained in:
@@ -1278,7 +1278,20 @@ void btConvexHullInternal::computeInternal(int start, int end, IntermediateHull&
|
||||
return;
|
||||
}
|
||||
}
|
||||
// lint -fallthrough
|
||||
{
|
||||
Vertex* v = originalVertices[start];
|
||||
v->edges = NULL;
|
||||
v->next = v;
|
||||
v->prev = v;
|
||||
|
||||
result.minXy = v;
|
||||
result.maxXy = v;
|
||||
result.minYx = v;
|
||||
result.maxYx = v;
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
case 1:
|
||||
{
|
||||
Vertex* v = originalVertices[start];
|
||||
|
||||
@@ -98,6 +98,7 @@ SIMD_FORCE_INLINE bool btMutexTryLock( btSpinMutex* mutex )
|
||||
class btIParallelForBody
|
||||
{
|
||||
public:
|
||||
virtual ~btIParallelForBody() {}
|
||||
virtual void forLoop( int iBegin, int iEnd ) const = 0;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user