1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-04 03:40:07 +00:00

Changed some types from int to size_t where appropriate. Fixed a CoreMidi build problem in 64-bit mode.

This commit is contained in:
jules 2013-02-24 15:49:06 +00:00
parent f507bb8a48
commit bfd9350bed
46 changed files with 155 additions and 151 deletions

View file

@ -611,7 +611,7 @@ bool CodeDocument::writeToStream (OutputStream& stream)
String temp (lines.getUnchecked(i)->line); // use a copy to avoid bloating the memory footprint of the stored string.
const char* utf8 = temp.toUTF8();
if (! stream.write (utf8, (int) strlen (utf8)))
if (! stream.write (utf8, strlen (utf8)))
return false;
}