mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-17 20:26:30 +01:00
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:
parent
c8cc2d1dd6
commit
63376189ad
1 changed files with 1 additions and 1 deletions
|
|
@ -4201,7 +4201,7 @@ Session::add_automation_list(AutomationList *al)
|
||||||
bool
|
bool
|
||||||
Session::have_rec_enabled_track () const
|
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 */
|
/** Update the state of our rec-enabled tracks flag */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue