diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2019-10-17 19:18:52 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-17 19:18:52 -0300 |
commit | 7398466c33c848ee7b6e8eb7f479c5a2e53b0870 (patch) | |
tree | 24102a3157042adfc869e741a8b9f022f5c20d46 /src/core/core.cpp | |
parent | 9fe8072c67f0a99c68b95c69ea19c2334fd0258f (diff) | |
parent | 98c6a9507982de0f6577bb18429f07facb0e465f (diff) |
Merge pull request #2990 from lioncash/warn
core: Resolve -Wreorder warnings
Diffstat (limited to 'src/core/core.cpp')
-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, } struct System::Impl { 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() { return cpu_core_manager.GetCurrentCore(); |