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

Changes for VC6 comptibility. Fixed a typo in BitArray::toString.

This commit is contained in:
Julian Storer 2009-12-11 10:57:31 +00:00
parent 03b54862c5
commit ce7def1f9d
11 changed files with 362 additions and 216 deletions

View file

@ -882,11 +882,6 @@ String& String::operator<< (const short number) throw()
return *this;
}
String& String::operator<< (const unsigned short number) throw()
{
return operator<< ((unsigned int) number);
}
String& String::operator<< (const long number) throw()
{
return operator<< ((int) number);