C++11 inheritance updates

Add `override` and remove `virtual` where applicable
This commit is contained in:
David CARLIER
2019-10-31 19:05:33 +00:00
committed by Lukas W
parent 46f5433732
commit dac59a5fa0
133 changed files with 578 additions and 579 deletions

View File

@@ -63,7 +63,7 @@ public:
}
virtual void processInEvent( const MidiEvent& event, const MidiTime& time, f_cnt_t offset = 0 )
void processInEvent( const MidiEvent& event, const MidiTime& time, f_cnt_t offset = 0 ) override
{
if( event.type() == MidiControlChange &&
( m_midiPort.inputChannel() == 0 || m_midiPort.inputChannel() == event.channel() + 1 ) )