summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour
diff options
context:
space:
mode:
authornick_m <mainsbridge@gmail.com>2017-06-08 22:18:57 +1000
committernick_m <mainsbridge@gmail.com>2017-06-08 22:18:57 +1000
commit7a71428fb08eaf5bf8cbb88c18069c02f9c3ab64 (patch)
tree253f78cc89f0208cb275f3e4d7ca2d86a5cf6106 /libs/ardour/ardour
parentb57b1de49128c918a7d322be953db979ea687751 (diff)
Fix uninitialised tempo section variable
Should fix 7390.
Diffstat (limited to 'libs/ardour/ardour')
-rw-r--r--libs/ardour/ardour/tempo.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/libs/ardour/ardour/tempo.h b/libs/ardour/ardour/tempo.h
index fd49037307..197c8c5f8f 100644
--- a/libs/ardour/ardour/tempo.h
+++ b/libs/ardour/ardour/tempo.h
@@ -249,7 +249,6 @@ class LIBARDOUR_API TempoSection : public MetricSection, public Tempo {
framepos_t frame_at_pulse (const double& pulse) const;
Timecode::BBT_Time legacy_bbt () { return _legacy_bbt; }
- bool legacy_end () { return _legacy_end; }
private:
@@ -283,7 +282,6 @@ class LIBARDOUR_API TempoSection : public MetricSection, public Tempo {
bool _locked_to_meter;
bool _clamped;
Timecode::BBT_Time _legacy_bbt;
- bool _legacy_end;
};
typedef std::list<MetricSection*> Metrics;