diff options
Diffstat (limited to 'thirdparty/bullet/LinearMath/btReducedVector.h')
| -rw-r--r-- | thirdparty/bullet/LinearMath/btReducedVector.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/thirdparty/bullet/LinearMath/btReducedVector.h b/thirdparty/bullet/LinearMath/btReducedVector.h index 83b5e581e5..313a4271f0 100644 --- a/thirdparty/bullet/LinearMath/btReducedVector.h +++ b/thirdparty/bullet/LinearMath/btReducedVector.h @@ -267,7 +267,7 @@ public:          std::sort(tuples.begin(), tuples.end());          btAlignedObjectArray<int> new_indices;          btAlignedObjectArray<btVector3> new_vecs; -        for (int i = 0; i < tuples.size(); ++i) +        for (size_t i = 0; i < tuples.size(); ++i)          {              new_indices.push_back(tuples[i].b);              new_vecs.push_back(m_vecs[tuples[i].a]); |