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:
parent
c93d7a31d5
commit
195495a989
3 changed files with 9 additions and 18 deletions
|
|
@ -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(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue