diff --git a/src/common/logging/vst2.h b/src/common/logging/vst2.h index 2fe1d60c..75af6412 100644 --- a/src/common/logging/vst2.h +++ b/src/common/logging/vst2.h @@ -49,7 +49,9 @@ class Vst2Logger { /** * @see Logger::log_trace */ - inline void log_trace(const std::string& message) { logger.log(message); } + inline void log_trace(const std::string& message) { + logger.log_trace(message); + } // The following functions are for logging specific events, they are only // enabled for verbosity levels higher than 1 (i.e. `Verbosity::events`) diff --git a/src/common/logging/vst3.h b/src/common/logging/vst3.h index 8eccac19..45a9511d 100644 --- a/src/common/logging/vst3.h +++ b/src/common/logging/vst3.h @@ -36,7 +36,9 @@ class Vst3Logger { /** * @see Logger::log_trace */ - inline void log_trace(const std::string& message) { logger.log(message); } + inline void log_trace(const std::string& message) { + logger.log_trace(message); + } // For every object we send using `Vst3MessageHandler` we have overloads // that print information about the request and the response. The boolean diff --git a/src/common/serialization/vst3.h b/src/common/serialization/vst3.h index dc15b1c8..4b913e6d 100644 --- a/src/common/serialization/vst3.h +++ b/src/common/serialization/vst3.h @@ -50,8 +50,6 @@ struct WantsConfiguration { * copy of the hosted Windows VST3 plugin's `IPluginFactory{,2,3}` interface. */ struct WantsPluginFactory { - // TODO: Some things had to be changed to use references since this is an - // abstract class. Check if nothing breaks. using Response = YaPluginFactory&; };