diff options
author | Kitty Barnett <develop@catznip.com> | 2023-02-08 14:52:16 +0100 |
---|---|---|
committer | Kitty Barnett <develop@catznip.com> | 2023-02-08 14:52:16 +0100 |
commit | 5805bbd8104e66fb9ae7ed3c22e374e377b2f2e1 (patch) | |
tree | aeea23255f4717f57012d5d42075659ecff6c76a /indra/llmath | |
parent | da0335c864477036ba996fbab4db2194535466d7 (diff) | |
parent | b2f890408e2dc63a0f842273c41c0efed770cb9a (diff) |
Merge branch 'DRTVWR-489-emoji' of https://github.com/secondlife/viewer into DRTVWR-489-emoji
Diffstat (limited to 'indra/llmath')
-rw-r--r-- | indra/llmath/llvolume.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmath/llvolume.cpp b/indra/llmath/llvolume.cpp index be25592d54..ed5334d31b 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]; |