summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Lihatskiy <andreylproductengine@lindenlab.com>2021-01-21 01:07:21 +0000
committerAndrey Lihatskiy <andreylproductengine@lindenlab.com>2021-01-21 01:07:21 +0000
commit4eaf400c3619035172d15a8a29d0249e82427f84 (patch)
treea8a18ec4b5e248a0d0a5ea202fa65a6af13b1ed0
parentbbd071f3d53b3a8169647f8594ce97ccdbc86f36 (diff)
Merged in xcode-buildfix (pull request #442)
xcode 12.3 buildfix * xcode 12.3 buildfix Approved-by: Andrey Kleshchev
-rw-r--r--indra/llcommon/llsingleton.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llsingleton.cpp b/indra/llcommon/llsingleton.cpp
index 83a4b64e8f..ad933154c2 100644
--- a/indra/llcommon/llsingleton.cpp
+++ b/indra/llcommon/llsingleton.cpp
@@ -388,7 +388,7 @@ LLSingletonBase::vec_t LLSingletonBase::dep_sort()
// extracts just the first (key) element from each sorted_iterator, then
// uses vec_t's range constructor... but frankly this is more
// straightforward, as long as we remember the above reserve() call!
- for (const SingletonDeps::sorted_iterator::value_type& pair : sdeps.sort())
+ for (const SingletonDeps::sorted_iterator::value_type pair : sdeps.sort())
{
ret.push_back(pair.first);
}