summaryrefslogtreecommitdiff
path: root/indra/llrender/llgl.cpp
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2023-04-03 13:53:18 -0400
committerNat Goodspeed <nat@lindenlab.com>2023-04-03 13:53:18 -0400
commit230c96b20d8658236e83742169a7744b18a04ed2 (patch)
tree2e02b454a11a7562ba48a10e01d2a3352a5de505 /indra/llrender/llgl.cpp
parentc7053a6928fd5eafdc935453742e92951ae4e0c1 (diff)
SL-18330: Remove some set-but-unused vars flagged by Xcode 14.3.
Diffstat (limited to 'indra/llrender/llgl.cpp')
-rw-r--r--indra/llrender/llgl.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/indra/llrender/llgl.cpp b/indra/llrender/llgl.cpp
index 193cfa64b8..cfc9ce735d 100644
--- a/indra/llrender/llgl.cpp
+++ b/indra/llrender/llgl.cpp
@@ -2329,9 +2329,7 @@ void LLGLSyncFence::wait()
if (mSync)
{
while (glClientWaitSync(mSync, 0, FENCE_WAIT_TIME_NANOSECONDS) == GL_TIMEOUT_EXPIRED)
- { //track the number of times we've waited here
- static S32 waits = 0;
- waits++;
+ {
}
}
#endif