From f312c0a68c31813cad0ca02b22e29e196ec976fb Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Wed, 11 Aug 2021 19:20:05 -0400
Subject: [PATCH] Fix annoying warning

---
 indra/newview/llglsandbox.cpp | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/indra/newview/llglsandbox.cpp b/indra/newview/llglsandbox.cpp
index bd74639f51a..708e3473b56 100644
--- a/indra/newview/llglsandbox.cpp
+++ b/indra/newview/llglsandbox.cpp
@@ -1134,16 +1134,17 @@ F32 gpu_benchmark()
 	for (U32 i = 0; i < count; ++i)
 	{
 		//allocate render targets and textures
-		if (!dest[i].allocate(res, res, GL_RGBA, false, false, LLTexUnit::TT_TEXTURE, true))
+        auto& render_target = dest[i];
+		if (!render_target.allocate(res, res, GL_RGBA, false, false, LLTexUnit::TT_TEXTURE, true))
 		{
 			LL_WARNS("Benchmark") << "Failed to allocate render target." << LL_ENDL;
 			// abandon the benchmark test
 			delete[] pixels;
 			return -1.f;
 		}
-		dest[i].bindTarget();
-		dest[i].clear();
-		dest[i].flush();
+        render_target.bindTarget();
+        render_target.clear();
+        render_target.flush();
 
 		if (!texHolder.bind(i))
 		{
-- 
GitLab