Skip to content
Snippets Groups Projects
Commit d75ecde6 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

SL-19690: Properly qualify exception type.

parent 026ef193
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
...@@ -573,7 +573,7 @@ namespace LL ...@@ -573,7 +573,7 @@ namespace LL
std::forward<ARGS>(args)...); std::forward<ARGS>(args)...);
if (! posted) if (! posted)
{ {
LLTHROW(Closed); LLTHROW(WorkQueueBase::Closed());
} }
auto future{ LLCoros::getFuture(promise) }; auto future{ LLCoros::getFuture(promise) };
// now, on the calling thread, wait for that result // now, on the calling thread, wait for that result
...@@ -608,7 +608,7 @@ namespace LL ...@@ -608,7 +608,7 @@ namespace LL
std::forward<ARGS>(args)...); std::forward<ARGS>(args)...);
if (! posted) if (! posted)
{ {
LLTHROW(Closed); LLTHROW(WorkQueueBase::Closed());
} }
auto future{ LLCoros::getFuture(promise) }; auto future{ LLCoros::getFuture(promise) };
// block until set_value() // block until set_value()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment