From c3a32108b22ea234b5e82c12f74d0f37e4b2fd82 Mon Sep 17 00:00:00 2001 From: joshua stein Date: Mon, 3 Feb 2020 17:12:42 -0600 Subject: [PATCH] Piano: Fix building with clang --- Applications/Piano/RollWidget.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/Piano/RollWidget.h b/Applications/Piano/RollWidget.h index 3cd3d5d44b..7eea45bf76 100644 --- a/Applications/Piano/RollWidget.h +++ b/Applications/Piano/RollWidget.h @@ -48,7 +48,7 @@ private: AudioEngine& m_audio_engine; int m_horizontal_notes { 32 }; - Switch m_roll_notes[note_count][32] { Off }; + Switch m_roll_notes[note_count][32] { { Off } }; int m_current_column { 0 }; int m_previous_column { m_horizontal_notes - 1 }; };