1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added a non-sense if statement to BufferingAudioSource to surpress an MSVC linker warning

This commit is contained in:
hogliux 2016-10-20 15:45:30 +01:00
parent 3e7b5993ca
commit a931b472d0

View file

@ -91,7 +91,12 @@ void BufferingAudioSource::releaseResources()
backgroundThread.removeTimeSliceClient (this);
buffer.setSize (numberOfChannels, 0);
source->releaseResources();
// MSVC2015 seems to need this if statement to not generate a warning during linking.
// As source is set in the constructor, there is no way that source could
// ever equal this, but it seems to make MSVC2015 happy.
if (source != this)
source->releaseResources();
}
void BufferingAudioSource::getNextAudioBlock (const AudioSourceChannelInfo& info)