summaryrefslogtreecommitdiff
path: root/indra/llappearance/llavatarappearance.h
diff options
context:
space:
mode:
authorFawrsk <45524015+Fawrsk@users.noreply.github.com>2023-01-03 17:08:15 -0400
committerGitHub <noreply@github.com>2023-01-03 23:08:15 +0200
commit74a9280c698b4f88a46549923a2d717b82dd7ee2 (patch)
tree029f57168a5f69cb7eb60b21faddecdeadec0f26 /indra/llappearance/llavatarappearance.h
parent43496fe04e7dadae230da5b633a389ba0b7c0b0b (diff)
SL-18893 Clean up for loops in llappearance to use C++11 range based for loops (#38)
Diffstat (limited to 'indra/llappearance/llavatarappearance.h')
-rw-r--r--indra/llappearance/llavatarappearance.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/llappearance/llavatarappearance.h b/indra/llappearance/llavatarappearance.h
index b1c70f9064..cb1cbc11a6 100644
--- a/indra/llappearance/llavatarappearance.h
+++ b/indra/llappearance/llavatarappearance.h
@@ -387,10 +387,9 @@ protected:
LLAvatarMeshInfo() : mLOD(0), mMinPixelArea(.1f) {}
~LLAvatarMeshInfo()
{
- morph_info_list_t::iterator iter;
- for (iter = mPolyMorphTargetInfoList.begin(); iter != mPolyMorphTargetInfoList.end(); iter++)
+ for (auto& pair : mPolyMorphTargetInfoList)
{
- delete iter->first;
+ delete pair.first;
}
mPolyMorphTargetInfoList.clear();
}