Mercurial > hg > piper-cpp
changeset 264:37760b5376b3
Avoid compiler warnings
| author | Chris Cannam <cannam@all-day-breakfast.com> | 
|---|---|
| date | Fri, 12 Oct 2018 11:12:25 +0100 | 
| parents | 9a044706ab73 | 
| children | 7ada63fe1084 | 
| files | vamp-client/PiperVampPlugin.h | 
| diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] | 
line wrap: on
 line diff
--- a/vamp-client/PiperVampPlugin.h Fri Oct 12 11:12:09 2018 +0100 +++ b/vamp-client/PiperVampPlugin.h Fri Oct 12 11:12:25 2018 +0100 @@ -244,7 +244,7 @@ return false; } - } catch (const std::exception &e) { + } catch (const std::exception &) { m_state = Failed; throw; } @@ -269,7 +269,7 @@ try { m_client->reset(this, m_config); - } catch (const std::exception &e) { + } catch (const std::exception &) { m_state = Failed; throw; } @@ -352,7 +352,7 @@ try { return m_client->process(this, vecbuf, timestamp); - } catch (const std::exception &e) { + } catch (const std::exception &) { m_state = Failed; throw; } @@ -376,7 +376,7 @@ try { return m_client->finish(this); - } catch (const std::exception &e) { + } catch (const std::exception &) { m_state = Failed; throw; }
