mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-27 02:20:05 +00:00
Code clean-ups. Jucer development.
This commit is contained in:
parent
22e02cf791
commit
1751beed57
145 changed files with 2247 additions and 1853 deletions
|
|
@ -160,7 +160,7 @@ int BigInteger::getBitRangeAsInt (const int startBit, int numBits) const throw()
|
|||
{
|
||||
if (numBits > 32)
|
||||
{
|
||||
jassertfalse // use getBitRange() if you need more than 32 bits..
|
||||
jassertfalse; // use getBitRange() if you need more than 32 bits..
|
||||
numBits = 32;
|
||||
}
|
||||
|
||||
|
|
@ -185,7 +185,7 @@ void BigInteger::setBitRangeAsInt (const int startBit, int numBits, unsigned int
|
|||
{
|
||||
if (numBits > 32)
|
||||
{
|
||||
jassertfalse
|
||||
jassertfalse;
|
||||
numBits = 32;
|
||||
}
|
||||
|
||||
|
|
@ -908,7 +908,7 @@ const String BigInteger::toString (const int base, const int minimumNumCharacter
|
|||
}
|
||||
else
|
||||
{
|
||||
jassertfalse // can't do the specified base!
|
||||
jassertfalse; // can't do the specified base!
|
||||
return String::empty;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue