summaryrefslogtreecommitdiff
path: root/indra/llmath
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2022-11-03 15:18:32 -0400
committerNat Goodspeed <nat@lindenlab.com>2022-11-03 15:18:32 -0400
commit5a74f7648a7dda28f8634e825cc506de465bd424 (patch)
tree724be2d41eef0fd7d122f7118a85cc278181e3c1 /indra/llmath
parent9522a0b7c16414fce2103cf58bfdd63aaf0cb01b (diff)
DRTVWR-575: A few more tweaks addressing size_t wider than 32 bits.
Diffstat (limited to 'indra/llmath')
-rw-r--r--indra/llmath/llvolume.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmath/llvolume.cpp b/indra/llmath/llvolume.cpp
index f43d07ce5e..bac630f626 100644
--- a/indra/llmath/llvolume.cpp
+++ b/indra/llmath/llvolume.cpp
@@ -2398,7 +2398,7 @@ bool LLVolume::unpackVolumeFaces(std::istream& is, S32 size)
mVolumeFaces.resize(face_count);
- for (U32 i = 0; i < face_count; ++i)
+ for (size_t i = 0; i < face_count; ++i)
{
LLVolumeFace& face = mVolumeFaces[i];