diff --git a/indra/llmessage/llmessageprecompiled.h b/indra/llmessage/llmessageprecompiled.h
index d2ce7fab83ebdc7db57b344b49ef49b1695271f8..3aef589ac50093b3a8eff72349dc02d6d0a25224 100644
--- a/indra/llmessage/llmessageprecompiled.h
+++ b/indra/llmessage/llmessageprecompiled.h
@@ -39,4 +39,5 @@
 #include "llstl.h"
 #include "lltimer.h"
 
-#endif // LL_LLMESSAGEPRECOMPILED_H
\ No newline at end of file
+#endif // LL_LLMESSAGEPRECOMPILED_H
+
diff --git a/indra/llrender/llfontregistry.cpp b/indra/llrender/llfontregistry.cpp
index c0715c31084c1e0766cf26cd9c111fbf6a7eb38a..32f31357250607f54fba870db16d032edf306bfe 100644
--- a/indra/llrender/llfontregistry.cpp
+++ b/indra/llrender/llfontregistry.cpp
@@ -463,7 +463,7 @@ LLFontGL *LLFontRegistry::createFont(const LLFontDescriptor& desc)
 		font_paths.push_back(local_path + file_name);
 		font_paths.push_back(sys_path + file_name);
 #if LL_DARWIN
-		font_paths.push_back(MACOSX_FONT_PATH_LIBRARY + *file_name_it);
+		font_paths.push_back(MACOSX_FONT_PATH_LIBRARY + file_name);
 #endif
 		
 		bool is_ft_collection = (std::find(ft_collection_list.begin(), ft_collection_list.end(), file_name) != ft_collection_list.end());
diff --git a/indra/newview/alchatcommand.cpp b/indra/newview/alchatcommand.cpp
index 3825b0878bb7a2b89658f9c4b73b9a38a8d727ae..75e94ecbf5ed908cec4bc537cb695ba9d90d592f 100644
--- a/indra/newview/alchatcommand.cpp
+++ b/indra/newview/alchatcommand.cpp
@@ -289,7 +289,7 @@ bool ALChatCommand::parseCommand(std::string data)
 					LLVOAvatar* avatarp = (LLVOAvatar*)object;
 					if (avatarp)
 					{
-						for (const std::pair<LLUUID, S32>& playpair : avatarp->mPlayingAnimations)
+						for (const std::pair<LLUUID, S32> playpair : avatarp->mPlayingAnimations)
 						{
 							avatarp->stopMotion(playpair.first, TRUE);
 							avatarp->startMotion(playpair.first);
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index e858ec0f0cfd65933f38ccec4a2cd05fc63558b6..8872009c1024fd27b6d5406d7ddfd9ee91cb07f1 100644
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -1190,7 +1190,7 @@ bool LLAppViewer::init()
 		LLSD item(LeapCommand);
 		LeapCommand.append(item);
 	}
-	for (const std::string& leap : llsd::inArray(LeapCommand))
+	for (const LLSD& leap : llsd::inArray(LeapCommand))
 	{
 		LL_INFOS("InitInfo") << "processing --leap \"" << leap << '"' << LL_ENDL;
 		// We don't have any better description of this plugin than the
@@ -1199,7 +1199,7 @@ bool LLAppViewer::init()
 		// Suppress LLLeap::Error exception: trust LLLeap's own logging. We
 		// don't consider any one --leap command mission-critical, so if one
 		// fails, log it, shrug and carry on.
-		LLLeap::create("", leap, false); // exception=false
+		LLLeap::create("", leap.asString(), false); // exception=false
 	}
 
 	if (gSavedSettings.getBOOL("QAMode") && gSavedSettings.getS32("QAModeEventHostPort") > 0)
diff --git a/indra/newview/llfasttimerview.cpp b/indra/newview/llfasttimerview.cpp
index 339fa62c60b8415e22dd5c7207441cb7b0b6aa4d..c95063b9d059688d37e99e84e434355743d87c53 100644
--- a/indra/newview/llfasttimerview.cpp
+++ b/indra/newview/llfasttimerview.cpp
@@ -734,7 +734,7 @@ void LLFastTimerView::exportCharts(const std::string& base, const std::string& t
 
 		last_p.clear();
 
-		for (std::_Vector_iterator<std::_Vector_val<std::_Simple_types<double>>>::value_type& iter : base_execution)
+		for (const F64 iter : base_execution)
         {
 			gGL.begin(LLRender::TRIANGLE_STRIP);
 			gGL.vertex3fv(last_p.mV);
@@ -754,7 +754,7 @@ void LLFastTimerView::exportCharts(const std::string& base, const std::string& t
 			count = 0;
 			total_count = cur_execution.size();
 
-			for (std::_Vector_iterator<std::_Vector_val<std::_Simple_types<double>>>::value_type& iter : cur_execution)
+			for (const F64 iter : cur_execution)
             {
 				gGL.begin(LLRender::TRIANGLE_STRIP);
 				gGL.vertex3f(last_p.mV[0], 0.f, 0.f);
diff --git a/indra/newview/llfeaturemanager.cpp b/indra/newview/llfeaturemanager.cpp
index 7cc6cc692295057a095b2e30f9a862f721ef7880..24bce69b11bd968c3e79a433757061691bdd6f45 100644
--- a/indra/newview/llfeaturemanager.cpp
+++ b/indra/newview/llfeaturemanager.cpp
@@ -730,7 +730,7 @@ void LLFeatureManager::applyBaseMasks()
 	// now mask by gpu string
 	// Replaces ' ' with '_' in mGPUString to deal with inability for parser to handle spaces
 	std::string gpustr = mGPUString;
-	for (std::_String_iterator<std::_String_val<std::_Simple_types<char>>>::value_type& iter : gpustr)
+	for (std::string::value_type& iter : gpustr)
     {
 		if (iter == ' ')
 		{