summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Kloen2017-01-29 23:17:07 +0100
committerGravatar Kloen2017-01-30 00:12:07 +0100
commitb3a0b1489b662a65b9cf3f96510436eb2974e443 (patch)
tree902cb24ef97b13a1005ec956aac0baf5049f47d6 /src
parentMerge pull request #2491 from Kloen/killing-warnings-2.5HDRemix (diff)
downloadyuzu-b3a0b1489b662a65b9cf3f96510436eb2974e443.tar.gz
yuzu-b3a0b1489b662a65b9cf3f96510436eb2974e443.tar.xz
yuzu-b3a0b1489b662a65b9cf3f96510436eb2974e443.zip
core: inline CPU, 132 warnings fixed on GCC
Diffstat (limited to 'src')
-rw-r--r--src/core/core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 1015e8847..17572a74f 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -115,7 +115,7 @@ private:
115 static System s_instance; 115 static System s_instance;
116}; 116};
117 117
118static ARM_Interface& CPU() { 118inline ARM_Interface& CPU() {
119 return System::GetInstance().CPU(); 119 return System::GetInstance().CPU();
120} 120}
121 121