Add bbt_add that does not take Metric parameter.
[ardour.git] / libs / ardour / tempo.cc
index 094c507dea0210424e249b6e91c50335eae49860..d7300f937b9f4b592aa1299a52bd082c8334c8db 100644 (file)
@@ -1624,6 +1624,13 @@ TempoMap::bbt_add (const BBT_Time& a, const BBT_Time& b, const TempoMetric& /*me
        return BBT_Time(a.bars + b.bars, a.beats + b.beats, a.ticks + b.ticks);
 }
 
+BBT_Time
+TempoMap::bbt_add (const BBT_Time& a, const BBT_Time& b)
+{
+       // FIXME: Obviously not correct!
+       return BBT_Time(a.bars + b.bars, a.beats + b.beats, a.ticks + b.ticks);
+}
+
 BBT_Time
 TempoMap::bbt_subtract (const BBT_Time& a, const BBT_Time& b)
 {