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 4e76036cd06546490c7f35f7796d1a402b1ab0ff
parent 63f5c672730c6cd73163ebe2b24cf9f03c4dfccc
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sat, 17 Jul 2021 23:07:05 +0200

remove empty constructor

Diffstat:
Msource/synthLib/resamplerInOut.cpp | 4----
Msource/synthLib/resamplerInOut.h | 2+-
2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/source/synthLib/resamplerInOut.cpp b/source/synthLib/resamplerInOut.cpp @@ -11,10 +11,6 @@ namespace synthLib { constexpr uint32_t g_channelCount = 2; - ResamplerInOut::ResamplerInOut() - { - } - void ResamplerInOut::setDeviceSamplerate(float _samplerate) { if(m_samplerateDevice == _samplerate) diff --git a/source/synthLib/resamplerInOut.h b/source/synthLib/resamplerInOut.h @@ -14,7 +14,7 @@ namespace synthLib using TMidiVec = std::vector<SMidiEvent>; using TProcessFunc = std::function<void(float**, float**, size_t, const TMidiVec&, TMidiVec&)>; - ResamplerInOut(); + ResamplerInOut() = default; void setDeviceSamplerate(float _samplerate); void setHostSamplerate(float _samplerate);