extend comments to avoid unused-variable warnings from commented code

This commit is contained in:
Paul Davis 2016-06-05 15:10:24 -04:00
parent e4a588901b
commit 58f6b98662

View File

@ -118,12 +118,11 @@ void
AutomationControl::actually_set_value (double value, PBD::Controllable::GroupControlDisposition gcd)
{
bool to_list = _list && boost::dynamic_pointer_cast<AutomationList>(_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;