summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2024-03-28 11:36:46 -0400
committerNat Goodspeed <nat@lindenlab.com>2024-03-28 11:36:46 -0400
commitfc6f8197f5e8764d0c2c0234437a7003f1ce6a0d (patch)
tree91901eca466f40192721adf4d7e382691733997b
parentce73e5c5ab0c33673067d9322c98ae8800fa9224 (diff)
Eliminate unreferenced exception name
-rw-r--r--indra/llcommon/lualistener.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lualistener.cpp b/indra/llcommon/lualistener.cpp
index 37ce27a2a4..ef9782824e 100644
--- a/indra/llcommon/lualistener.cpp
+++ b/indra/llcommon/lualistener.cpp
@@ -108,7 +108,7 @@ LuaListener::PumpData LuaListener::getNext()
{
return mQueue.pop();
}
- catch (const LLThreadSafeQueueInterrupt& exc)
+ catch (const LLThreadSafeQueueInterrupt&)
{
// mQueue has been closed. The only way that happens is when we detect
// viewer shutdown. Terminate the calling coroutine.