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 c62e959db5d2907c2bce29f8613825b726dcda78
parent 1a701ddafab4583f5373c3976e5a3248ecc6eaa8
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Fri, 31 May 2024 03:17:49 +0200

fix compile error in move constructor

Diffstat:
Msource/jucePluginLib/event.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/jucePluginLib/event.h b/source/jucePluginLib/event.h @@ -101,7 +101,7 @@ namespace pluginLib { } - EventListener(EventListener&& _listener) noexcept : m_event(_listener), m_listenerId(_listener.m_listenerId) + EventListener(EventListener&& _listener) noexcept : m_event(_listener.m_event), m_listenerId(_listener.m_listenerId) { _listener.m_listenerId = InvalidListenerId; }