diff options
| author | 2019-10-17 16:24:19 -0400 | |
|---|---|---|
| committer | 2019-10-17 17:51:06 -0400 | |
| commit | 98c6a9507982de0f6577bb18429f07facb0e465f (patch) | |
| tree | 24102a3157042adfc869e741a8b9f022f5c20d46 | |
| parent | core/memory/cheat_engine: Resolve -Wreorder warnings (diff) | |
| download | yuzu-98c6a9507982de0f6577bb18429f07facb0e465f.tar.gz yuzu-98c6a9507982de0f6577bb18429f07facb0e465f.tar.xz yuzu-98c6a9507982de0f6577bb18429f07facb0e465f.zip | |
core/core: Resolve -Wreorder warnings
Amends the initializer lists to be ordered in the same manner that
they're declared within the class.
| -rw-r--r-- | src/core/core.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index ddc767e30..a30253c50 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp | |||
| @@ -112,8 +112,8 @@ FileSys::VirtualFile GetGameFileFromPath(const FileSys::VirtualFilesystem& vfs, | |||
| 112 | } | 112 | } |
| 113 | struct System::Impl { | 113 | struct System::Impl { |
| 114 | explicit Impl(System& system) | 114 | explicit Impl(System& system) |
| 115 | : kernel{system}, fs_controller{system}, cpu_core_manager{system}, | 115 | : kernel{system}, fs_controller{system}, cpu_core_manager{system}, reporter{system}, |
| 116 | applet_manager{system}, reporter{system} {} | 116 | applet_manager{system} {} |
| 117 | 117 | ||
| 118 | Cpu& CurrentCpuCore() { | 118 | Cpu& CurrentCpuCore() { |
| 119 | return cpu_core_manager.GetCurrentCore(); | 119 | return cpu_core_manager.GetCurrentCore(); |