mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-05 13:15:44 +01:00
fix a const-cast issue
This commit is contained in:
parent
0b4b0b19bc
commit
c9d55cb172
1 changed files with 1 additions and 1 deletions
|
|
@ -347,7 +347,7 @@ LuaBindings::common (lua_State* L)
|
|||
.beginClass <InterThreadInfo> ("InterThreadInfo")
|
||||
.addVoidConstructor ()
|
||||
.addData ("done", const_cast<bool InterThreadInfo::*>(&InterThreadInfo::done))
|
||||
.addData ("cancel", (bool InterThreadInfo::*)&InterThreadInfo::cancel)
|
||||
.addData ("cancel", const_cast<bool InterThreadInfo::*>(&InterThreadInfo::cancel))
|
||||
.addData ("progress", const_cast<float InterThreadInfo::*>(&InterThreadInfo::progress))
|
||||
.endClass ()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue