summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2019-10-22 20:48:36 -0400
committerNat Goodspeed <nat@lindenlab.com>2020-03-25 19:02:24 -0400
commit7541e784d991888d6f600f4cb9439d5fcf15e452 (patch)
tree532d7fd58dcadc63068093f8dc624fa3e55381db /indra/llcommon
parent1345a02b21a83bc4ee7ff72efc1858e956f18c53 (diff)
DRTVWR-476: Don't name the caught exception
unless we're going to reference it.
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/lleventcoro.cpp2
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 "