summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2023-01-12 19:49:35 +0200
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2023-01-12 19:49:35 +0200
commit1ff3b1ffa54db0f7aaca543e2565e1ac3087d1e0 (patch)
tree0ed2c8a1f1cd7e0609dc4e2054b63a1d031d7bcc
parent10a4319c303a30789ff02f89e3e59028573f5b46 (diff)
MacOS build fix
-rw-r--r--indra/llrender/llvertexbuffer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llrender/llvertexbuffer.cpp b/indra/llrender/llvertexbuffer.cpp
index c1ffe6957a..bc33591ed7 100644
--- a/indra/llrender/llvertexbuffer.cpp
+++ b/indra/llrender/llvertexbuffer.cpp
@@ -326,7 +326,7 @@ public:
auto& pool = type == GL_ELEMENT_ARRAY_BUFFER ? mIBOPool : mVBOPool;
- auto& iter = pool.find(size);
+ Pool::iterator iter = pool.find(size);
if (iter == pool.end())
{ // cache miss, allocate a new buffer
LL_PROFILE_ZONE_NAMED_CATEGORY_VERTEX("vbo pool miss");
@@ -374,7 +374,7 @@ public:
auto& pool = type == GL_ELEMENT_ARRAY_BUFFER ? mIBOPool : mVBOPool;
- auto& iter = pool.find(size);
+ Pool::iterator iter = pool.find(size);
if (iter == pool.end())
{