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 6984e7c9f169f2df8a7abe63379d4939b43b0c55
parent a8c38d90880a46e85a40a03f7beeecaf0bba889d
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Tue, 17 May 2022 21:57:50 +0200

fix warning

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

diff --git a/source/jucePluginLib/parameterdescriptions.cpp b/source/jucePluginLib/parameterdescriptions.cpp @@ -292,7 +292,7 @@ namespace pluginLib errors << "Parameter named " << d.name << " is already defined"; continue; } - m_nameToIndex.insert(std::make_pair(d.name, i)); + m_nameToIndex.insert(std::make_pair(d.name, static_cast<uint32_t>(i))); } const auto midipackets = json["midipackets"].getDynamicObject();