From 57ac068a232ef2d327be5d9445d56cce7e720de5 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 1 Dec 2018 23:56:17 -0500 Subject: [PATCH] service/audio/audout_u: Amend constructor initialization list order Orders the constructor initializer list the same way the members of the class are declared. Prevents -Wreorder warnings --- src/core/hle/service/audio/audout_u.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/hle/service/audio/audout_u.cpp b/src/core/hle/service/audio/audout_u.cpp index 2ee9bc2734..d0dd1ef106 100644 --- a/src/core/hle/service/audio/audout_u.cpp +++ b/src/core/hle/service/audio/audout_u.cpp @@ -46,8 +46,8 @@ class IAudioOut final : public ServiceFramework { public: IAudioOut(AudoutParams audio_params, AudioCore::AudioOut& audio_core, std::string&& device_name, std::string&& unique_name) - : ServiceFramework("IAudioOut"), audio_core(audio_core), audio_params(audio_params), - device_name(std::move(device_name)) { + : ServiceFramework("IAudioOut"), audio_core(audio_core), + device_name(std::move(device_name)), audio_params(audio_params) { static const FunctionInfo functions[] = { {0, &IAudioOut::GetAudioOutState, "GetAudioOutState"},