mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-24 01:54:22 +00:00
Added a missing declaration for String << unsigned long
This commit is contained in:
parent
50eeb1df7e
commit
28c3faea23
1 changed files with 2 additions and 0 deletions
|
|
@ -1335,6 +1335,8 @@ JUCE_API String& JUCE_CALLTYPE operator<< (String& string1, int number);
|
|||
/** Appends a decimal number at the end of a string. */
|
||||
JUCE_API String& JUCE_CALLTYPE operator<< (String& string1, long number);
|
||||
/** Appends a decimal number at the end of a string. */
|
||||
JUCE_API String& JUCE_CALLTYPE operator<< (String& string1, unsigned long number);
|
||||
/** Appends a decimal number at the end of a string. */
|
||||
JUCE_API String& JUCE_CALLTYPE operator<< (String& string1, int64 number);
|
||||
/** Appends a decimal number at the end of a string. */
|
||||
JUCE_API String& JUCE_CALLTYPE operator<< (String& string1, uint64 number);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue