From 57f74fbf132ad4c2bc59f2f3d6e298936d752963 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 9 Jul 2016 17:15:17 -0400 Subject: [PATCH] const bool METHOD() const makes no sense --- libs/ardour/ardour/tempo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/ardour/tempo.h b/libs/ardour/ardour/tempo.h index d956556c46..0a9585c3dc 100644 --- a/libs/ardour/ardour/tempo.h +++ b/libs/ardour/ardour/tempo.h @@ -129,7 +129,7 @@ class LIBARDOUR_API MetricSection { PositionLockStyle position_lock_style () const { return _position_lock_style; } void set_position_lock_style (PositionLockStyle ps) { _position_lock_style = ps; } - const bool is_tempo () const { return _is_tempo; } + bool is_tempo () const { return _is_tempo; } private: double _pulse;