13
0

Minor fix to commit #45df39bd0ea from yesterday

class 'AutomatableSequence' was trying to access a member that's private to its base class
This commit is contained in:
John Emmas 2022-01-07 10:29:31 +00:00
parent 78b39284d8
commit 031dce4ba4

View File

@ -38,7 +38,7 @@ public:
AutomatableSequence(const AutomatableSequence<T>& other)
: Evoral::ControlSet(other)
, Automatable(other._a_session, other._time_domain)
, Automatable(other._a_session, other.time_domain())
, Evoral::Sequence<T>(other)
{}