mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
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:
parent
a1c627aa24
commit
45df39bd0e
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
{}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue