diff --git a/indra/newview/llcontrolavatar.cpp b/indra/newview/llcontrolavatar.cpp
index 7e679d610885d51acfe45319f06f69fd1bc92988..d307d6de123a4f045d5125f98e3f7a9ec92d98f7 100644
--- a/indra/newview/llcontrolavatar.cpp
+++ b/indra/newview/llcontrolavatar.cpp
@@ -277,10 +277,8 @@ void LLControlAvatar::updateVolumeGeom()
 	mRootVolp->mDrawable->setState(LLDrawable::USE_BACKLIGHT);
 
 	LLViewerObject::const_child_list_t& child_list = mRootVolp->getChildren();
-	for (LLViewerObject::child_list_t::const_iterator iter = child_list.begin();
-		 iter != child_list.end(); ++iter)
+	for (LLViewerObject* childp : child_list)
 	{
-		LLViewerObject* childp = *iter;
 		if (childp && childp->mDrawable.notNull())
 		{
 			childp->mDrawable->setState(LLDrawable::USE_BACKLIGHT);
@@ -491,10 +489,8 @@ void LLControlAvatar::getAnimatedVolumes(std::vector<LLVOVolume*>& volumes)
     volumes.push_back(mRootVolp);
     
 	LLViewerObject::const_child_list_t& child_list = mRootVolp->getChildren();
-	for (LLViewerObject::const_child_list_t::const_iterator iter = child_list.begin();
-		 iter != child_list.end(); ++iter)
+	for (LLViewerObject* childp : child_list)
 	{
-		LLViewerObject* childp = *iter;
         LLVOVolume *child_volp = childp ? childp->asVolume() : nullptr;
         if (child_volp && child_volp->isAnimatedObject())
         {
diff --git a/indra/newview/lldrawable.cpp b/indra/newview/lldrawable.cpp
index 0c8e4b582e16117c90fc74e28411a0a1b64ae512..7f4f4c52beb27165a21728a45661187b60f91c35 100644
--- a/indra/newview/lldrawable.cpp
+++ b/indra/newview/lldrawable.cpp
@@ -542,10 +542,8 @@ void LLDrawable::makeActive()
 		llassert_always(mVObjp);
 		
 		LLViewerObject::const_child_list_t& child_list = mVObjp->getChildren();
-		for (LLViewerObject::child_list_t::const_iterator iter = child_list.begin();
-			 iter != child_list.end(); iter++)
+		for (LLViewerObject* child : child_list)
 		{
-			LLViewerObject* child = *iter;
 			LLDrawable* drawable = child->mDrawable;
 			if (drawable)
 			{
diff --git a/indra/newview/llfloaterobjectweights.cpp b/indra/newview/llfloaterobjectweights.cpp
index ed1ad4426f3599b976daef0d961bc4c696f3de7c..bdca3e49f075b30a40f33d0913a8cfe373c0a092 100644
--- a/indra/newview/llfloaterobjectweights.cpp
+++ b/indra/newview/llfloaterobjectweights.cpp
@@ -43,7 +43,7 @@ bool LLCrossParcelFunctor::apply(LLViewerObject* obj)
 	mBoundingBox.addBBoxAgent(LLBBox(obj->getPositionRegion(), obj->getRotationRegion(), obj->getScale() * -0.5f, obj->getScale() * 0.5f).getAxisAligned());
 
 	// Extend the bounding box across all the children.
-	LLViewerObject::const_child_list_t children = obj->getChildren();
+	LLViewerObject::const_child_list_t& children = obj->getChildren();
 	for (LLViewerObject::const_child_list_t::const_iterator iter = children.begin();
 		 iter != children.end(); iter++)
 	{
diff --git a/indra/newview/llspatialpartition.cpp b/indra/newview/llspatialpartition.cpp
index c6e2d9af77a7a93fc3f0bd8ebc7a54157fda9d32..2121059416229731b47a3c4999ed83a23b802001 100644
--- a/indra/newview/llspatialpartition.cpp
+++ b/indra/newview/llspatialpartition.cpp
@@ -2051,7 +2051,7 @@ void renderComplexityDisplay(LLDrawable* drawablep)
 	F32 cost = (F32) voVol->getRenderCost(textures);
 
 	// add any child volumes
-	LLViewerObject::const_child_list_t children = voVol->getChildren();
+	LLViewerObject::const_child_list_t& children = voVol->getChildren();
 	for (LLViewerObject::const_child_list_t::const_iterator iter = children.begin(); iter != children.end(); ++iter)
 	{
 		LLViewerObject *child = *iter;
@@ -2116,7 +2116,7 @@ void renderComplexityDisplay(LLDrawable* drawablep)
 				pushVerts(drawablep->getFace(i), LLVertexBuffer::MAP_VERTEX);
 			}
 		}
-		LLViewerObject::const_child_list_t children = voVol->getChildren();
+		LLViewerObject::const_child_list_t& children = voVol->getChildren();
 		for (LLViewerObject::const_child_list_t::const_iterator iter = children.begin(); iter != children.end(); ++iter)
 		{
 			const LLViewerObject *child = *iter;
diff --git a/indra/newview/llviewerobject.cpp b/indra/newview/llviewerobject.cpp
index a44003ea5e1029fd5f403ad6e896472974ac4dda..491f7bd1b357fba829550121411fcc8b2c477b3b 100644
--- a/indra/newview/llviewerobject.cpp
+++ b/indra/newview/llviewerobject.cpp
@@ -3970,12 +3970,9 @@ F32 LLViewerObject::recursiveGetScaledSurfaceArea() const
 				const LLVector3& scale = volume->getScale();
                 area += volume->getVolume()->getSurfaceArea() * llmax(llmax(scale.mV[0], scale.mV[1]), scale.mV[2]);
             }
-            LLViewerObject::const_child_list_t children = volume->getChildren();
-            for (LLViewerObject::const_child_list_t::const_iterator child_iter = children.begin();
-                 child_iter != children.end();
-                 ++child_iter)
+            const LLViewerObject::const_child_list_t& children = volume->getChildren();
+            for (LLViewerObject* child_obj : children)
             {
-                LLViewerObject* child_obj = *child_iter;
 				if(!child_obj) continue;
 
                 LLVOVolume *child = child_obj->asVolume();
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index f2440c2854ec6cf3fdb6c07f988d4b0382bf703e..fe122fd7cb5354e345487aa252ebaf21f2d2b845 100644
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -10523,12 +10523,9 @@ void LLVOAvatar::accountRenderComplexityForObject(
                 }
 							attachment_volume_cost += volume->getRenderCost(textures);
 
-							const_child_list_t children = volume->getChildren();
-							for (const_child_list_t::const_iterator child_iter = children.begin();
-								  child_iter != children.end();
-								  ++child_iter)
+							const_child_list_t& children = volume->getChildren();
+							for (LLViewerObject* child_obj : children)
 							{
-								LLViewerObject* child_obj = *child_iter;
 								LLVOVolume *child = child_obj ? child_obj->asVolume() : nullptr;
 								if (child)
 								{