Fix Vst{2,3}Logger::log_trace

This commit is contained in:
Robbert van der Helm
2020-12-07 00:25:02 +01:00
parent 8ea40cd9f9
commit e20fc8c7e6
3 changed files with 6 additions and 4 deletions
+3 -1
View File
@@ -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`)
+3 -1
View File
@@ -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
-2
View File
@@ -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&;
};