13
0

fix lambda warning (unused captured this)

This commit is contained in:
Paul Davis 2024-10-10 22:17:06 -06:00
parent dab9775223
commit 67c6a9dbf4

View File

@ -306,7 +306,7 @@ MergeableLine*
MidiCueView::make_merger ()
{
return new MergeableLine (automation_line, automation_control,
[this](Temporal::timepos_t const& t) { return t; },
[](Temporal::timepos_t const& t) { return t; },
nullptr, nullptr);
}