From 98822f2be27637477d6ff49bb006d15d18e0698c Mon Sep 17 00:00:00 2001 From: Andrzej Popowski Date: Wed, 1 Jul 2015 13:57:34 +0200 Subject: [PATCH] [Sound] - removing warnings after adding the compilation option -Wall [Verification] - the code compiles without errors and warnings in sound module Change-Id: I6214fe317638be4d4efb892b461fcd4b03063026 Signed-off-by: Andrzej Popowski --- src/sound/sound_manager.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sound/sound_manager.cc b/src/sound/sound_manager.cc index 58a2bd72..97468dae 100644 --- a/src/sound/sound_manager.cc +++ b/src/sound/sound_manager.cc @@ -120,8 +120,8 @@ std::string SoundManager::SoundIOTypeToString(sound_device_io_direction_e type) SoundManager::SoundManager(SoundInstance& instance) : soundModeChangeListening(false), sound_device_change_listener_(false), - soundModeListener(nullptr), - instance_(instance){ + instance_(instance), + soundModeListener(nullptr) { FillMaxVolumeMap(); } -- 2.34.1