diff options
author | Cosmic Linden <cosmic@lindenlab.com> | 2024-06-12 16:21:58 -0700 |
---|---|---|
committer | Cosmic Linden <cosmic@lindenlab.com> | 2024-06-13 12:49:48 -0700 |
commit | fcf9af42fa51567957a924fbfda8c3be948d3a25 (patch) | |
tree | abbbb361a0674154e08dc77db5674992b6ddf5db /indra/llmath | |
parent | fa4e463ba87a483a62528cf67bcb93b14add4911 (diff) |
secondlife/viewer#907: Review feedback
Diffstat (limited to 'indra/llmath')
-rw-r--r-- | indra/llmath/llmath.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmath/llmath.h b/indra/llmath/llmath.h index 4e8fc56de0..fa315291a3 100644 --- a/indra/llmath/llmath.h +++ b/indra/llmath/llmath.h @@ -517,7 +517,7 @@ inline void ll_remove_outliers(std::vector<VEC_TYPE>& data, F32 k) i++; } - S32 j = data.size()-1; + size_t j = data.size()-1; while (j > 0 && data[j] > max) { j--; |