1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

DSP: Allowed AudioBlocks of const elements

This commit is contained in:
reuk 2019-03-19 14:45:19 +00:00 committed by Tom Poole
parent bdfbcff62d
commit 827055c2c1
9 changed files with 143 additions and 59 deletions

View file

@ -156,7 +156,7 @@ private:
std::unique_ptr<Pimpl> pimpl;
//==============================================================================
void processSamples (const AudioBlock<float>&, AudioBlock<float>&, bool isBypassed) noexcept;
void processSamples (const AudioBlock<const float>&, AudioBlock<float>&, bool isBypassed) noexcept;
//==============================================================================
double sampleRate;