Data Race in juce_Network_mac.mm

The following function triggers a data race error in Juce 8.0.0 in the latest xcode.

    void didSendBodyData (int64_t totalBytesWritten)
    {
        latestTotalBytes = static_cast<int> (totalBytesWritten);
    }

Found here:
modules/juce_core/native/juce_Network_mac.mm

The code snippet you posted doesn’t match the implementation of this function on the develop branch. There have been a couple of recent updates:

Please try with the latest develop branch and let us know if the problem is still present. Thanks!