1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-20 01:14:20 +00:00

Removed const qualifier from dsp::Bias::processSample()

This commit is contained in:
ed 2020-02-10 16:17:07 +00:00
parent 1e71c07a49
commit 46aa467303

View file

@ -90,7 +90,7 @@ public:
//==============================================================================
/** Returns the result of processing a single sample. */
template <typename SampleType>
SampleType processSample (SampleType inputSample) const noexcept
SampleType processSample (SampleType inputSample) noexcept
{
return inputSample + bias.getNextValue();
}