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

Fixed a bug with some ifdeffed VST3 code in the AudioProcessor definition

This commit is contained in:
Tom Poole 2018-01-17 15:18:22 +00:00
parent f503ca2701
commit c46cb12c46

View file

@ -1617,9 +1617,10 @@ private:
#if JucePlugin_Build_VST3
friend class JuceVST3EditController;
friend class JuceVST3Component;
Atomic<int> vst3IsPlaying { 0 };
#endif
Atomic<int> vst3IsPlaying { 0 };
// This method is no longer used - you can delete it from your AudioProcessor classes.
JUCE_DEPRECATED_WITH_BODY (virtual bool silenceInProducesSilenceOut() const, { return false; })