mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-29 02:40:05 +00:00
Removed some unnecessary consts from the parameters for SynthesiserSound::appliesToNote and appliesToChannel
This commit is contained in:
parent
d284f892b5
commit
08a49cb6d4
5 changed files with 10 additions and 10 deletions
|
|
@ -21,8 +21,8 @@ class SineWaveSound : public SynthesiserSound
|
|||
public:
|
||||
SineWaveSound() {}
|
||||
|
||||
bool appliesToNote (const int /*midiNoteNumber*/) override { return true; }
|
||||
bool appliesToChannel (const int /*midiChannel*/) override { return true; }
|
||||
bool appliesToNote (int /*midiNoteNumber*/) override { return true; }
|
||||
bool appliesToChannel (int /*midiChannel*/) override { return true; }
|
||||
};
|
||||
|
||||
//==============================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue