diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2023-05-08 12:31:57 -0400 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2023-05-08 12:31:57 -0400 | 
| commit | d75ecde69c1289f4e3df8b75e9a74c5b05db318c (patch) | |
| tree | 0b354158b5a5a37a8ce94c599d36f95e0d069474 /indra | |
| parent | 026ef1935dbdb21ab79159d38fb78e126dd6ac95 (diff) | |
SL-19690: Properly qualify exception type.
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llcommon/workqueue.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/llcommon/workqueue.h b/indra/llcommon/workqueue.h index 87fdd1517f..ec0700a718 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() | 
