make previous commit compile (lua)

This commit is contained in:
nick_m 2017-01-06 02:22:33 +11:00
parent 7138a0baa0
commit ade582a1bb

View File

@ -1456,7 +1456,8 @@ LuaBindings::common (lua_State* L)
.beginClass <TempoMap> ("TempoMap")
.addFunction ("add_tempo", &TempoMap::add_tempo)
.addFunction ("add_meter", &TempoMap::add_meter)
.addFunction ("tempo_section_at_frame", &TempoMap::tempo_section_at_frame)
.addFunction ("tempo_section_at_frame", (TempoSection& (TempoMap::*)(framepos_t))&TempoMap::tempo_section_at_frame)
.addFunction ("tempo_section_at_frame", (const TempoSection& (TempoMap::*)(framepos_t) const)&TempoMap::tempo_section_at_frame)
.addFunction ("meter_section_at_frame", &TempoMap::meter_section_at_frame)
.addFunction ("meter_section_at_beat", &TempoMap::meter_section_at_beat)
.addFunction ("bbt_at_frame", &TempoMap::bbt_at_frame)