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:
parent
0bac9fefc6
commit
b5f2723ef9
1 changed files with 1 additions and 1 deletions
|
|
@ -248,7 +248,7 @@ public:
|
|||
|
||||
void didSendBodyData (NSInteger totalBytesWritten, NSInteger /*totalBytesExpected*/)
|
||||
{
|
||||
latestTotalBytes = totalBytesWritten;
|
||||
latestTotalBytes = static_cast<int> (totalBytesWritten);
|
||||
}
|
||||
|
||||
void finishedLoading()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue