From 0814d67337e297f39d09afbe22e1071bb7a758f9 Mon Sep 17 00:00:00 2001 From: Paul Fd Date: Tue, 10 Mar 2020 17:55:58 +0100 Subject: [PATCH] Don't initialize member arrays --- src/sfizz/MidiState.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sfizz/MidiState.h b/src/sfizz/MidiState.h index b629c88a..badb0e17 100644 --- a/src/sfizz/MidiState.h +++ b/src/sfizz/MidiState.h @@ -134,13 +134,13 @@ private: * @brief Stores the note on times. * */ - MidiNoteArray noteOnTimes { }; + MidiNoteArray noteOnTimes; /** * @brief Stores the velocity of the note ons for currently * depressed notes. * */ - MidiNoteArray lastNoteVelocities { }; + MidiNoteArray lastNoteVelocities; /** * @brief Current known values for the CCs. *