From 4d96e1207c0b8b4f439b1df2a79835bdb5661385 Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 15 Sep 2021 01:10:44 +0100 Subject: [PATCH] Change AudioMidiSyncHelper to be a struct Signed-off-by: falkTX --- distrho/DistrhoPluginUtils.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/distrho/DistrhoPluginUtils.hpp b/distrho/DistrhoPluginUtils.hpp index aea97e68..e9bf1c24 100644 --- a/distrho/DistrhoPluginUtils.hpp +++ b/distrho/DistrhoPluginUtils.hpp @@ -47,8 +47,8 @@ START_NAMESPACE_DISTRHO 2. The class variable names are the same as the default ones in the run function. Keep that in mind and try to avoid typos. :) */ -class AudioMidiSyncHelper { -public: +struct AudioMidiSyncHelper +{ /** Parameters from the run function, adjusted for event sync */ float* outputs[DISTRHO_PLUGIN_NUM_OUTPUTS]; uint32_t frames;