diff options
author | Brad Linden <brad@lindenlab.com> | 2024-06-11 15:39:48 -0700 |
---|---|---|
committer | Brad Linden <brad@lindenlab.com> | 2024-06-11 15:39:48 -0700 |
commit | a7b0f9391146b42dd5cd5f47f845de81bfdb6820 (patch) | |
tree | 4d0e499b14abe28434de8f9cc97a50fa92e0d6e0 /indra/llmath | |
parent | 7c42711ca3a4e67b95473aa5129dce5ff19bea15 (diff) |
Fixed signed/unsigned warnings after they got enabled in the maint-A merge
Diffstat (limited to 'indra/llmath')
-rw-r--r-- | indra/llmath/llvolumeoctree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmath/llvolumeoctree.h b/indra/llmath/llvolumeoctree.h index 838e1d3db0..05d45f7b5f 100644 --- a/indra/llmath/llvolumeoctree.h +++ b/indra/llmath/llvolumeoctree.h @@ -186,7 +186,7 @@ public: llassert(!branch->isLeaf()); // Empty leaf } - for (S32 i = 0; i < branch->getChildCount(); ++i) + for (U32 i = 0; i < branch->getChildCount(); ++i) { //stretch by child extents LLVolumeOctreeListener* child = (LLVolumeOctreeListener*)branch->getChild(i)->getListener(0); min.setMin(min, child->mExtents[0]); |