13
0

fix mysterious incorrect copy constructor call for AutomatableSequence

msvc calls this out, but gcc/clang do not. It is not clear why, and it might be worth understanding why
This commit is contained in:
Paul Davis 2022-01-06 10:36:50 -07:00
parent a1c627aa24
commit 45df39bd0e

View File

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