From 58f6b98662b34a725b6a5c1e9bfb7ddd66442715 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 5 Jun 2016 15:10:24 -0400 Subject: [PATCH] extend comments to avoid unused-variable warnings from commented code --- libs/ardour/automation_control.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libs/ardour/automation_control.cc b/libs/ardour/automation_control.cc index 7dc39114a2..2be0538229 100644 --- a/libs/ardour/automation_control.cc +++ b/libs/ardour/automation_control.cc @@ -118,12 +118,11 @@ void AutomationControl::actually_set_value (double value, PBD::Controllable::GroupControlDisposition gcd) { bool to_list = _list && boost::dynamic_pointer_cast(_list)->automation_write(); - const double old_value = Control::user_double (); + //const double old_value = Control::user_double (); Control::set_double (value, _session.transport_frame(), to_list); - AutomationType at = (AutomationType) _parameter.type(); - + //AutomationType at = (AutomationType) _parameter.type(); //std::cerr << "++++ Changed (" << enum_2_string (at) << ", " << enum_2_string (gcd) << ") = " << value //<< " (was " << old_value << ") @ " << this << std::endl; -- 2.30.2