فهرست منبع

core/core: Resolve -Wreorder warnings

Amends the initializer lists to be ordered in the same manner that
they're declared within the class.
Lioncash 6 سال پیش
والد
کامیت
98c6a95079
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      src/core/core.cpp

+ 2 - 2
src/core/core.cpp

@@ -112,8 +112,8 @@ FileSys::VirtualFile GetGameFileFromPath(const FileSys::VirtualFilesystem& vfs,
 }
 }
 struct System::Impl {
 struct System::Impl {
     explicit Impl(System& system)
     explicit Impl(System& system)
-        : kernel{system}, fs_controller{system}, cpu_core_manager{system},
-          applet_manager{system}, reporter{system} {}
+        : kernel{system}, fs_controller{system}, cpu_core_manager{system}, reporter{system},
+          applet_manager{system} {}
 
 
     Cpu& CurrentCpuCore() {
     Cpu& CurrentCpuCore() {
         return cpu_core_manager.GetCurrentCore();
         return cpu_core_manager.GetCurrentCore();