From 3baccf885db41d9c24edaa650c037970d6c317ed Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Tue, 1 Jun 2021 18:18:44 +0200 Subject: [PATCH] Remove old todo --- src/common/serialization/vst3/event-list.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/common/serialization/vst3/event-list.cpp b/src/common/serialization/vst3/event-list.cpp index 48ab4440..34b1ef50 100644 --- a/src/common/serialization/vst3/event-list.cpp +++ b/src/common/serialization/vst3/event-list.cpp @@ -204,9 +204,6 @@ size_t YaEventList::num_events() const noexcept { void YaEventList::write_back_outputs( Steinberg::Vst::IEventList& output_events) const { - // TODO: I assume the host is responsible for directly copying heap data - // (e.g. text) in these events and they're not supposed to stay - // around, right? If not, then we'll find out very quickly. for (auto& event : events) { Steinberg::Vst::Event reconstructed_event = event.get(); output_events.addEvent(reconstructed_event);