diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-07-07 20:54:34 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-07-07 20:54:34 -0400 |
commit | 908fb3fed6b858da4dc2b1c840b849e30ade2046 (patch) | |
tree | d26ebdfe9b11d47d712a73ceef8ddde1d12095f9 /indra | |
parent | 09c5b01997e1d34e799a8a0ee3571bd181f9a665 (diff) |
SL-18837: Ditch unreferenced name of caught exception
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/tests/llprocess_test.cpp | 2 |
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()) |