Skip to content

Commit 4699453

Browse files
committed
Code style.
1 parent 6476b4f commit 4699453

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Source/PluginProcessor.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,18 +91,18 @@ int AeolusAudioProcessor::getCurrentProgram()
9191
return _engine.getSequencer()->getCurrentStep();
9292
}
9393

94-
void AeolusAudioProcessor::setCurrentProgram (int index)
94+
void AeolusAudioProcessor::setCurrentProgram(int index)
9595
{
9696
if (index >= 0 && index < _engine.getSequencer()->getStepsCount())
9797
_engine.getSequencer()->setStep(index);
9898
}
9999

100-
const juce::String AeolusAudioProcessor::getProgramName (int index)
100+
const juce::String AeolusAudioProcessor::getProgramName(int index)
101101
{
102102
return juce::String("Sequencer step ") + juce::String(index + 1);
103103
}
104104

105-
void AeolusAudioProcessor::changeProgramName (int /* index */, const juce::String& /* newName */)
105+
void AeolusAudioProcessor::changeProgramName(int /* index */, const juce::String& /* newName */)
106106
{
107107
}
108108

Source/aeolus/rankwave.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,6 @@ void Pipewave::genwave()
293293
v = v0 * math::exp2ap(0.1661f * (v + _model.getHarmonicRandomisation(h, _note) * (2.0f * rnd.nextFloat() - 1.0f)));
294294
k = (int)(_sampleRate * _model.getHarmonicAttack(h, _note) + 0.5f);
295295

296-
//jassert(k <= _att.size());
297296
if (k > _att.size())
298297
_att.resize(k);
299298

0 commit comments

Comments
 (0)