mirror of
https://github.com/overte-org/overte.git
synced 2025-08-16 19:01:54 +02:00
[WL21389] Minor: Fix size_t vs int comparison warning.
Changes Committed: modified: libraries/shared/src/ShapeInfo.cpp
This commit is contained in:
parent
0ad95806e3
commit
5c8e73bb54
1 changed files with 1 additions and 1 deletions
|
@ -284,7 +284,7 @@ const DoubleHashKey& ShapeInfo::getHash() const {
|
|||
|
||||
assert(_pointCollection.size() == (size_t)1);
|
||||
const PointList & points = _pointCollection.back();
|
||||
const size_t numPoints = points.size();
|
||||
const int numPoints = (int)points.size();
|
||||
uint32_t hash = _doubleHashKey.getHash();
|
||||
uint32_t hash2 = _doubleHashKey.getHash2();
|
||||
|
||||
|
|
Loading…
Reference in a new issue