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 657b6660270b665fdc8cdec52fa43ba304d820b3
parent 1c48c7921a1e57b0151279ff056c64b153926082
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Thu, 19 May 2022 22:37:29 +0200

fix missing newline in issue logging

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 @@ -281,7 +281,7 @@ namespace pluginLib if(m_nameToIndex.find(d.name) != m_nameToIndex.end()) { - errors << "Parameter named " << d.name << " is already defined"; + errors << "Parameter named " << d.name << " is already defined" << std::endl; continue; } m_nameToIndex.insert(std::make_pair(d.name, static_cast<uint32_t>(i)));