diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2019-10-22 20:48:36 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2020-03-25 19:02:24 -0400 |
commit | 7541e784d991888d6f600f4cb9439d5fcf15e452 (patch) | |
tree | 532d7fd58dcadc63068093f8dc624fa3e55381db | |
parent | 1345a02b21a83bc4ee7ff72efc1858e956f18c53 (diff) |
DRTVWR-476: Don't name the caught exception
unless we're going to reference it.
-rw-r--r-- | indra/llcommon/lleventcoro.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lleventcoro.cpp b/indra/llcommon/lleventcoro.cpp index 23e0012a1a..967c4d74d8 100644 --- a/indra/llcommon/lleventcoro.cpp +++ b/indra/llcommon/lleventcoro.cpp @@ -172,7 +172,7 @@ postAndSuspendSetup(const std::string& callerName, std::make_exception_ptr( LLCoros::Stopping("status " + statsd.asString()))); } - catch (const boost::fibers::promise_already_satisfied& exc) + catch (const boost::fibers::promise_already_satisfied&) { LL_WARNS("lleventcoro") << listenerName << " couldn't throw Stopping " |