mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-10 15:36:24 +01:00
fix "warning: this decimal constant is unsigned only in ISO C90"
This commit is contained in:
parent
b402e12d54
commit
ffc9901807
1 changed files with 1 additions and 1 deletions
|
|
@ -380,7 +380,7 @@ LuaBindings::common (lua_State* L)
|
|||
.addVoidConstructor ()
|
||||
.addFunction ("get", static_cast<uint32_t(ChanMapping::*)(DataType, uint32_t) const>(&ChanMapping::get))
|
||||
.addFunction ("set", &ChanMapping::set)
|
||||
.addConst ("Invalid", 4294967295) // UINT32_MAX
|
||||
.addConst ("Invalid", 4294967295U) // UINT32_MAX
|
||||
.endClass ()
|
||||
|
||||
.beginNamespace ("Properties")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue