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

Removed the default parameters from BigInteger::findNextSetBit and findNextClearBit.

This commit is contained in:
jules 2012-07-30 10:34:35 +01:00
parent c93d7a31d5
commit 195495a989
3 changed files with 9 additions and 18 deletions

View file

@ -896,7 +896,7 @@ public:
{
if (numActive >= maxNumber)
{
const int firstActiveChan = chans.findNextSetBit();
const int firstActiveChan = chans.findNextSetBit (0);
chans.setBit (index > firstActiveChan
? firstActiveChan : chans.getHighestBit(),