From 4eaf400c3619035172d15a8a29d0249e82427f84 Mon Sep 17 00:00:00 2001
From: Andrey Lihatskiy <andreylproductengine@lindenlab.com>
Date: Thu, 21 Jan 2021 01:07:21 +0000
Subject: [PATCH] Merged in xcode-buildfix (pull request #442)

xcode 12.3 buildfix

* xcode 12.3 buildfix

Approved-by: Andrey Kleshchev
---
 indra/llcommon/llsingleton.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/llcommon/llsingleton.cpp b/indra/llcommon/llsingleton.cpp
index 83a4b64e8f8..ad933154c21 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);
     }
-- 
GitLab