tweak for const correctness on apple
git-svn-id: svn://localhost/ardour2/branches/3.0@13956 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
@@ -4201,7 +4201,7 @@ Session::add_automation_list(AutomationList *al)
|
||||
bool
|
||||
Session::have_rec_enabled_track () const
|
||||
{
|
||||
return g_atomic_int_get (&_have_rec_enabled_track) == 1;
|
||||
return g_atomic_int_get (const_cast<gint*>(&_have_rec_enabled_track)) == 1;
|
||||
}
|
||||
|
||||
/** Update the state of our rec-enabled tracks flag */
|
||||
|
||||
Reference in New Issue
Block a user