mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
DSP: Made AudioBlock::getSubsetChannelBlock const
This commit is contained in:
parent
55c512d9a1
commit
12dfd3df45
1 changed files with 1 additions and 1 deletions
|
|
@ -243,7 +243,7 @@ public:
|
|||
@param channelStart First channel of the subset
|
||||
@param numChannelsToUse Count of channels in the subset
|
||||
*/
|
||||
forcedinline AudioBlock getSubsetChannelBlock (size_t channelStart, size_t numChannelsToUse) noexcept
|
||||
forcedinline AudioBlock getSubsetChannelBlock (size_t channelStart, size_t numChannelsToUse) const noexcept
|
||||
{
|
||||
jassert (channelStart < numChannels);
|
||||
jassert ((channelStart + numChannelsToUse) <= numChannels);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue