Don't initialize member arrays

This commit is contained in:
Paul Fd 2020-03-10 17:55:58 +01:00
parent 2d74e0c776
commit 0814d67337

View file

@ -134,13 +134,13 @@ private:
* @brief Stores the note on times. * @brief Stores the note on times.
* *
*/ */
MidiNoteArray<NoteOnTime> noteOnTimes { }; MidiNoteArray<NoteOnTime> noteOnTimes;
/** /**
* @brief Stores the velocity of the note ons for currently * @brief Stores the velocity of the note ons for currently
* depressed notes. * depressed notes.
* *
*/ */
MidiNoteArray<uint8_t> lastNoteVelocities { }; MidiNoteArray<uint8_t> lastNoteVelocities;
/** /**
* @brief Current known values for the CCs. * @brief Current known values for the CCs.
* *