diff options
author | Anchor <none@none> | 2019-06-10 15:56:44 -0700 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2020-03-25 18:44:04 -0400 |
commit | 32f1dfa531062071ccf090b9c3d391b274caf02b (patch) | |
tree | 8672316c478943e66a76b0a7274bb8875d53459d /indra/llprimitive | |
parent | a9191a83d9865c129cc483c33a8a338dc00f5cc9 (diff) |
[DRTVWR-476] - fix compiler errors 32 bit windows build
Diffstat (limited to 'indra/llprimitive')
-rw-r--r-- | indra/llprimitive/llmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llprimitive/llmodel.cpp b/indra/llprimitive/llmodel.cpp index 37548e3fe3..a2d9b4cd9b 100644 --- a/indra/llprimitive/llmodel.cpp +++ b/indra/llprimitive/llmodel.cpp @@ -1579,7 +1579,7 @@ void LLModel::Decomposition::fromLLSD(LLSD& decomp) range = max-min; - U16 count = position.size()/6; + U16 count = (U16)(position.size()/6); for (U32 j = 0; j < count; ++j) { |