diff options
| author | Dave Parks <davep@lindenlab.com> | 2021-10-28 18:06:21 +0000 |
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2021-10-28 18:06:21 +0000 |
| commit | 8d20480c5f77fe1fab8149d3cda79bdd61e77656 (patch) | |
| tree | 6ba8844d6e3b29451dc70213f8e7278db4943fa3 /indra/llappearance/llavatarappearance.cpp | |
| parent | aa7ca0aea134c9c40a0d4d1450cc64b7831d005f (diff) | |
SL-16148 SL-16244 SL-16270 SL-16253 Remove most BlockTimers, remove LLMemTracked, introduce alignas, hook most/all reamining allocs, disable synchronous occlusion, and convert frequently accessed LLSingletons to LLSimpleton
Diffstat (limited to 'indra/llappearance/llavatarappearance.cpp')
| -rw-r--r-- | indra/llappearance/llavatarappearance.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llappearance/llavatarappearance.cpp b/indra/llappearance/llavatarappearance.cpp index 90dfa04f28..2d6d2a10d2 100644 --- a/indra/llappearance/llavatarappearance.cpp +++ b/indra/llappearance/llavatarappearance.cpp @@ -1590,7 +1590,7 @@ BOOL LLAvatarAppearance::allocateCollisionVolumes( U32 num ) delete_and_clear_array(mCollisionVolumes); mNumCollisionVolumes = 0; - mCollisionVolumes = new(std::nothrow) LLAvatarJointCollisionVolume[num]; + mCollisionVolumes = new LLAvatarJointCollisionVolume[num]; if (!mCollisionVolumes) { LL_WARNS() << "Failed to allocate collision volumes" << LL_ENDL; |
