From d75ecde69c1289f4e3df8b75e9a74c5b05db318c Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Mon, 8 May 2023 12:31:57 -0400
Subject: [PATCH] SL-19690: Properly qualify exception type.

---
 indra/llcommon/workqueue.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/indra/llcommon/workqueue.h b/indra/llcommon/workqueue.h
index 87fdd1517f2..ec0700a7187 100644
--- a/indra/llcommon/workqueue.h
+++ b/indra/llcommon/workqueue.h
@@ -573,7 +573,7 @@ namespace LL
                 std::forward<ARGS>(args)...);
             if (! posted)
             {
-                LLTHROW(Closed);
+                LLTHROW(WorkQueueBase::Closed());
             }
             auto future{ LLCoros::getFuture(promise) };
             // now, on the calling thread, wait for that result
@@ -608,7 +608,7 @@ namespace LL
                 std::forward<ARGS>(args)...);
             if (! posted)
             {
-                LLTHROW(Closed);
+                LLTHROW(WorkQueueBase::Closed());
             }
             auto future{ LLCoros::getFuture(promise) };
             // block until set_value()
-- 
GitLab