mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-26 23:18:20 +01:00
Fix -Wcatch-value in unit-tests
This commit is contained in:
parent
e750cab915
commit
bc9b94dfab
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ LuaScriptTest::session_script_test ()
|
|||
try {
|
||||
LuaScriptParamList lsp = LuaScriptParams::script_params (spi, "sess_params");
|
||||
_session->register_lua_function ("test", script, lsp);
|
||||
} catch (SessionException e) {
|
||||
} catch (...) {
|
||||
CPPUNIT_FAIL (spi->name + ": Cannot add script to session");
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue