1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-16 00:34:19 +00:00

More ScopedPointer/unique_ptr compatibility work

This commit is contained in:
jules 2018-01-10 17:35:08 +00:00
parent 48a5fbd333
commit 1a60fa9765
80 changed files with 404 additions and 368 deletions

View file

@ -71,7 +71,7 @@ void MixerAudioSource::removeInputSource (AudioSource* const input)
return;
if (inputsToDelete [index])
toDelete = input;
toDelete.reset (input);
inputsToDelete.shiftBits (-1, index);
inputs.remove (index);