Don't initialize member arrays
This commit is contained in:
parent
2d74e0c776
commit
0814d67337
1 changed files with 2 additions and 2 deletions
|
|
@ -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.
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue