1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-01 03:10:06 +00:00

Fix LLVM warning in previous commit

This commit is contained in:
hogliux 2015-04-17 18:02:09 +01:00
parent 0bac9fefc6
commit b5f2723ef9

View file

@ -248,7 +248,7 @@ public:
void didSendBodyData (NSInteger totalBytesWritten, NSInteger /*totalBytesExpected*/)
{
latestTotalBytes = totalBytesWritten;
latestTotalBytes = static_cast<int> (totalBytesWritten);
}
void finishedLoading()