diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-09-17 20:03:03 +0300 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-09-17 23:36:49 +0300 |
commit | 576c558759aa84df7b30ee29ca55143719d73028 (patch) | |
tree | b91cce8ecf1dfba22999a03ffb6e3ac8feb75e01 /indra/newview/llmeshrepository.h | |
parent | fd843d514a4e28f8e4a5d5595bba21ccad195e72 (diff) |
Xcode16 build fix
Diffstat (limited to 'indra/newview/llmeshrepository.h')
-rw-r--r-- | indra/newview/llmeshrepository.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llmeshrepository.h b/indra/newview/llmeshrepository.h index b5c2424578..3d25a4dd78 100644 --- a/indra/newview/llmeshrepository.h +++ b/indra/newview/llmeshrepository.h @@ -256,8 +256,8 @@ class LLMeshRepoThread : public LLThread { public: - volatile static S32 sActiveHeaderRequests; - volatile static S32 sActiveLODRequests; + static std::atomic<S32> sActiveHeaderRequests; + static std::atomic<S32> sActiveLODRequests; static U32 sMaxConcurrentRequests; static S32 sRequestLowWater; static S32 sRequestHighWater; |