MIDClock_Slave: Introduce a 3% deadzone around speed 1.0 to lock in the speed
[ardour.git] / libs / ardour / tempo.cc
index 2dc5eeaada266ff4a8eb916b6a4602e09a14cafe..9dcce637e63d839481003c359ffe034e91047fb3 100644 (file)
@@ -24,7 +24,6 @@
 
 #include <cmath>
 
-#include <sigc++/bind.h>
 
 #include <glibmm/thread.h>
 #include "pbd/xml++.h"
@@ -1688,7 +1687,7 @@ TempoMap::bbt_add (const BBT_Time& start, const BBT_Time& other) const
  * add the BBT interval @param increment to  @param start and return the result
  */
 BBT_Time
-TempoMap::bbt_add (const BBT_Time& start, const BBT_Time& increment, const TempoMetric& metric) const
+TempoMap::bbt_add (const BBT_Time& start, const BBT_Time& increment, const TempoMetric& /*metric*/) const
 {
        BBT_Time result = start;
        BBT_Time op = increment; /* argument is const, but we need to modify it */