diff options
author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-04-24 19:49:27 +0200 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-04-24 20:55:37 +0300 |
commit | 5f4d312c8d2b6ba0fd13279ccfc569acd4f37c82 (patch) | |
tree | 4751db8f95f7c7651e37a77c3ccbe79d031d86c5 /indra/newview/tests | |
parent | 4c54488470a37f53f46c9d4694644a10b92b9790 (diff) |
Fix BOOL vs bool issues after merge
Diffstat (limited to 'indra/newview/tests')
-rw-r--r-- | indra/newview/tests/llviewerassetstats_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/tests/llviewerassetstats_test.cpp b/indra/newview/tests/llviewerassetstats_test.cpp index e2e7f09c3b..bdf91d0f07 100644 --- a/indra/newview/tests/llviewerassetstats_test.cpp +++ b/indra/newview/tests/llviewerassetstats_test.cpp @@ -43,7 +43,7 @@ namespace LLStatViewer LLTrace::SampleStatHandle<> FPS_SAMPLE("fpssample"); } -void LLVOAvatar::getNearbyRezzedStats(std::vector<S32>& counts) +void LLVOAvatar::getNearbyRezzedStats(std::vector<S32>& counts, F32& avg_cloud_time, S32& cloud_avatars) { counts.resize(3); counts[0] = 0; |