mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 05:35:47 +01:00
Automatable now requires (and owns) a time domain to be used by automation data
This commit is contained in:
parent
2131adec9d
commit
7c10cf1d54
39 changed files with 78 additions and 60 deletions
|
|
@ -86,7 +86,7 @@ Sequence<Time>::const_iterator::const_iterator(const Sequence<Time>&
|
|||
: _seq(&seq)
|
||||
, _active_patch_change_message (0)
|
||||
, _type(NIL)
|
||||
, _is_end((t == DBL_MAX) || seq.empty())
|
||||
, _is_end((t == std::numeric_limits<Time>::max()) || seq.empty())
|
||||
, _note_iter(seq.notes().end())
|
||||
, _sysex_iter(seq.sysexes().end())
|
||||
, _patch_change_iter(seq.patch_changes().end())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue