mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
AudioBlock: remove unnecessary cast from size_t to int.
This commit is contained in:
parent
0ffe0fb61b
commit
3f7220c2af
1 changed files with 1 additions and 1 deletions
|
|
@ -472,7 +472,7 @@ public:
|
|||
}
|
||||
else
|
||||
{
|
||||
auto n = static_cast<int> (jmin (numSamples, src.numSamples) * sizeFactor);
|
||||
auto n = jmin (numSamples, src.numSamples) * sizeFactor;
|
||||
|
||||
for (size_t i = 0; i < n; ++i)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue