diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-07-07 19:48:02 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-07-07 19:48:02 -0400 |
commit | 8aa3a0a7ed8cf3e3fedb2c98d6ea336fdd45e296 (patch) | |
tree | c9de20bfc1643f02a25323a53658aabc27b7d7ce /indra/llcommon/tests | |
parent | 8f81e1fa87123ff6255e9ee82e68c414efe05cdd (diff) |
SL-18837: Fix spurious semi
Diffstat (limited to 'indra/llcommon/tests')
-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 9ee7890c7c..fb5cf12cb2 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& err) { std::ifstream inf(logpath.c_str()); if (! inf.is_open()) |