summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/tempo.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-11-21 02:49:41 -0500
committerDavid Robillard <d@drobilla.net>2014-11-22 00:46:15 -0500
commit01493b14cfa215c61e3a99e6d4687b6d37453ab6 (patch)
tree297aa50b249b0cb5641ef62797c48e62a45abff4 /libs/ardour/ardour/tempo.h
parent24f7eccc867a5817765be9ae70acf1ed9be1ddfd (diff)
Fix const violation warnings in tempo.cc.
Diffstat (limited to 'libs/ardour/ardour/tempo.h')
-rw-r--r--libs/ardour/ardour/tempo.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/ardour/tempo.h b/libs/ardour/ardour/tempo.h
index 15cd1662f0..19fe5b0b12 100644
--- a/libs/ardour/ardour/tempo.h
+++ b/libs/ardour/ardour/tempo.h
@@ -359,7 +359,9 @@ class LIBARDOUR_API TempoMap : public PBD::StatefulDestructible
framecnt_t bbt_duration_at_unlocked (const Timecode::BBT_Time& when, const Timecode::BBT_Time& bbt, int dir);
const MeterSection& first_meter() const;
+ MeterSection& first_meter();
const TempoSection& first_tempo() const;
+ TempoSection& first_tempo();
void do_insert (MetricSection* section);
};