From 78d600258a750d24ce5c9effffd873a5150572e2 Mon Sep 17 00:00:00 2001 From: Trinity_Dejavu <none@none> Date: Fri, 30 Aug 2013 22:15:38 +0100 Subject: [PATCH] - fixed : GCC fixes --HG-- branch : RLVa --- indra/newview/rlvcommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/rlvcommon.cpp b/indra/newview/rlvcommon.cpp index 532f3604c7b..d9e3deae2c2 100644 --- a/indra/newview/rlvcommon.cpp +++ b/indra/newview/rlvcommon.cpp @@ -167,7 +167,7 @@ void RlvStrings::initClass() // Load the default string values std::vector<std::string> files = gDirUtilp->findSkinnedFilenames(LLDir::XUI, RLV_STRINGS_FILE, LLDir::ALL_SKINS); m_StringMapPath = (!files.empty()) ? files.front() : LLStringUtil::null; - for (auto itFile = files.cbegin(); itFile != files.cend(); ++itFile) + for (std::vector<std::string>::const_iterator itFile = files.begin(); itFile != files.end(); ++itFile) { loadFromFile(*itFile, false); } -- GitLab