mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 04:44:11 +02:00
Fix build warning
This commit is contained in:
parent
da5f80c139
commit
88b6472ced
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ uint32_t ShapeInfo::getNumSubShapes() const {
|
|||
uint32_t ShapeInfo::getLargestSubshapePointCount() const {
|
||||
uint32_t numPoints = 0;
|
||||
for (uint32_t i = 0; i < (uint32_t)_pointCollection.size(); ++i) {
|
||||
uint32_t n = _pointCollection[i].size();
|
||||
uint32_t n = (uint32_t)_pointCollection[i].size();
|
||||
if (n > numPoints) {
|
||||
numPoints = n;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue