diff --git a/src/common/serialization/vst3/host-context/host-application.cpp b/src/common/serialization/vst3/host-context/host-application.cpp index c4a7a3fd..9072a9ab 100644 --- a/src/common/serialization/vst3/host-context/host-application.cpp +++ b/src/common/serialization/vst3/host-context/host-application.cpp @@ -37,6 +37,9 @@ YaHostApplication::YaHostApplication(const ConstructArgs&& args) : arguments(std::move(args)) {} tresult PLUGIN_API YaHostApplication::getName(Steinberg::Vst::String128 name) { + // TODO: This is now not being logged at all. It's probably better if we + // just drop these two functions that output cached data directly. + // They'll only be used once or twice anyways. if (arguments.name) { // Terminate with a null byte. There are no nice functions for copying // UTF-16 strings (because who would use those?). diff --git a/src/common/serialization/vst3/plugin/component.cpp b/src/common/serialization/vst3/plugin/component.cpp index 88debb6e..5635595d 100644 --- a/src/common/serialization/vst3/plugin/component.cpp +++ b/src/common/serialization/vst3/plugin/component.cpp @@ -37,6 +37,9 @@ YaComponent::YaComponent(const ConstructArgs&& args) : arguments(std::move(args)) {} tresult PLUGIN_API YaComponent::getControllerClassId(Steinberg::TUID classId) { + // TODO: This is now not being logged at all. It's probably better if we + // just drop these two functions that output cached data directly. + // They'll only be used once or twice anyways. if (arguments.edit_controller_cid) { std::copy(arguments.edit_controller_cid->begin(), arguments.edit_controller_cid->end(), classId);