mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-28 02:30:05 +00:00
Added midi out to AudioProcessorGraphs. Improved documenation for Singletons. Added a couple of methods to String. Fixed a small bug in ogg-vorbis decoding.
This commit is contained in:
parent
55d8c360bb
commit
9fc4b6d822
8 changed files with 63 additions and 14 deletions
|
|
@ -882,6 +882,21 @@ 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);
|
||||
}
|
||||
|
||||
String& String::operator<< (const unsigned long number) throw()
|
||||
{
|
||||
return operator<< ((unsigned int) number);
|
||||
}
|
||||
|
||||
String& String::operator<< (const double number) throw()
|
||||
{
|
||||
operator+= (String (number));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue