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:
parent
1e71c07a49
commit
46aa467303
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue