Skip to content

Commit

Permalink
Delete unnecessary destructor
Browse files Browse the repository at this point in the history
  • Loading branch information
getdunne committed Sep 7, 2017
1 parent 4989816 commit f9e6b1d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions Source/PluginProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ VanillaJuceAudioProcessor::VanillaJuceAudioProcessor()
synth.addSound(pSound);
}

VanillaJuceAudioProcessor::~VanillaJuceAudioProcessor()
{
}

void VanillaJuceAudioProcessor::initializePrograms()
{
for (int i = 0; i < kNumberOfPrograms; i++)
Expand Down
1 change: 0 additions & 1 deletion Source/PluginProcessor.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ class VanillaJuceAudioProcessor
{
public:
VanillaJuceAudioProcessor();
virtual ~VanillaJuceAudioProcessor();

void prepareToPlay (double sampleRate, int samplesPerBlock) override;
void releaseResources() override;
Expand Down

0 comments on commit f9e6b1d

Please sign in to comment.