gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit b9dde0d130f0bf7831569aa72ba7df20eb4a197b
parent cee63faa1dbe2271d738f5dcaf02d0214ec8ad42
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sat,  2 Mar 2024 22:15:55 +0100

fix compile error on macOS

Diffstat:
Msource/jucePluginLib/patchdb/jobqueue.h | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/source/jucePluginLib/patchdb/jobqueue.h b/source/jucePluginLib/patchdb/jobqueue.h @@ -5,7 +5,8 @@ #include <mutex> #include <condition_variable> #include <thread> -#include <future> +#include <vector> +#include <memory> #include "dsp56kEmu/threadtools.h"