diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-03-28 11:36:46 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-03-28 11:36:46 -0400 |
commit | fc6f8197f5e8764d0c2c0234437a7003f1ce6a0d (patch) | |
tree | 91901eca466f40192721adf4d7e382691733997b | |
parent | ce73e5c5ab0c33673067d9322c98ae8800fa9224 (diff) |
Eliminate unreferenced exception name
-rw-r--r-- | indra/llcommon/lualistener.cpp | 2 |
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. |