From 45df39bd0ea29903807cd8c8db2951603f15dacf Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 6 Jan 2022 10:36:50 -0700 Subject: [PATCH] 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 --- libs/ardour/ardour/automatable_sequence.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/ardour/automatable_sequence.h b/libs/ardour/ardour/automatable_sequence.h index 0522a9b727..f0da178eb4 100644 --- a/libs/ardour/ardour/automatable_sequence.h +++ b/libs/ardour/ardour/automatable_sequence.h @@ -38,7 +38,7 @@ public: AutomatableSequence(const AutomatableSequence& other) : Evoral::ControlSet(other) - , Automatable(other._a_session) + , Automatable(other._a_session, other._time_domain) , Evoral::Sequence(other) {}