diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2022-11-03 15:18:32 -0400 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2022-11-03 15:18:32 -0400 | 
| commit | 5a74f7648a7dda28f8634e825cc506de465bd424 (patch) | |
| tree | 724be2d41eef0fd7d122f7118a85cc278181e3c1 /indra/llcommon | |
| parent | 9522a0b7c16414fce2103cf58bfdd63aaf0cb01b (diff) | |
DRTVWR-575: A few more tweaks addressing size_t wider than 32 bits.
Diffstat (limited to 'indra/llcommon')
| -rw-r--r-- | indra/llcommon/tests/lleventdispatcher_test.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/llcommon/tests/lleventdispatcher_test.cpp b/indra/llcommon/tests/lleventdispatcher_test.cpp index 9da1ecfd67..966dc2c5aa 100644 --- a/indra/llcommon/tests/lleventdispatcher_test.cpp +++ b/indra/llcommon/tests/lleventdispatcher_test.cpp @@ -335,7 +335,7 @@ namespace tut          // Full, partial defaults arrays for params for freena(), freenb()          LLSD dft_array_full, dft_array_partial;          // Start index of partial defaults arrays -        const LLSD::Integer partial_offset; +        const size_t partial_offset;          // Full, partial defaults maps for params for freena(), freenb()          LLSD dft_map_full, dft_map_partial;          // Most of the above are indexed by "a" or "b". Useful to have an | 
