diff options
author | Brad Linden <brad@lindenlab.com> | 2024-06-17 16:02:57 -0700 |
---|---|---|
committer | Brad Linden <brad@lindenlab.com> | 2024-06-17 16:02:57 -0700 |
commit | d0dfffe659b24f5a6bfadc5cc612869e1f08bb93 (patch) | |
tree | 8df3c672aba2f1aca8e9861bcf7626bd8116b107 /indra/llmath | |
parent | 5e60392c273f0c9c5efa765a05414c618381780a (diff) | |
parent | 375555012f92c1b836f2d122754f9facd050be62 (diff) |
Merge remote-tracking branch 'origin/develop' into brad/webrtc-voice-develop
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--; |