# HG changeset patch
# User Chris Cannam <cannam@all-day-breakfast.com>
# Date 1539339145 -3600
# Node ID 37760b5376b3c1150868de0ec285af33fe1bf349
# Parent  9a044706ab7344e898569d6b1fff8b166769c8c6
Avoid compiler warnings

diff -r 9a044706ab73 -r 37760b5376b3 vamp-client/PiperVampPlugin.h
--- 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;
         }