Browse Source

Fixed missing reference in LinearSmoothedValue::applyGain

tags/2021-05-28
hogliux 7 years ago
parent
commit
df1fe18048
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_audio_basics/effects/juce_LinearSmoothedValue.h

+ 1
- 1
modules/juce_audio_basics/effects/juce_LinearSmoothedValue.h View File

@@ -147,7 +147,7 @@ public:
//==============================================================================
/** Applies a linear smoothed gain to a buffer */
void applyGain(AudioBuffer<FloatType> buffer, int numSamples) noexcept
void applyGain (AudioBuffer<FloatType>& buffer, int numSamples) noexcept
{
jassert (numSamples >= 0);


Loading…
Cancel
Save