summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2023-07-07 20:54:34 -0400
committerNat Goodspeed <nat@lindenlab.com>2023-07-07 20:54:34 -0400
commit908fb3fed6b858da4dc2b1c840b849e30ade2046 (patch)
treed26ebdfe9b11d47d712a73ceef8ddde1d12095f9
parent09c5b01997e1d34e799a8a0ee3571bd181f9a665 (diff)
SL-18837: Ditch unreferenced name of caught exception
-rw-r--r--indra/llcommon/tests/llprocess_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/tests/llprocess_test.cpp b/indra/llcommon/tests/llprocess_test.cpp
index c6091bfeb1..827837d62a 100644
--- a/indra/llcommon/tests/llprocess_test.cpp
+++ b/indra/llcommon/tests/llprocess_test.cpp
@@ -163,7 +163,7 @@ struct PythonProcessLauncher
mPy = LLProcess::create(mParams);
tut::ensure(STRINGIZE("Couldn't launch " << mDesc << " script"), bool(mPy));
}
- catch (const tut::failure& err)
+ catch (const tut::failure&)
{
std::ifstream inf(logpath.c_str());
if (! inf.is_open())