1
0
Fork 0
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:
Julian Storer 2010-05-12 23:42:49 +01:00
parent 22e02cf791
commit 1751beed57
145 changed files with 2247 additions and 1853 deletions

View file

@ -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;
}