summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2017-01-29 15:40:50 -0800
committerGravatar GitHub2017-01-29 15:40:50 -0800
commit5bb6753f2edd7cd8727db8ed9f820fb7c571a3ac (patch)
tree15ae7583dba1d3cf2f6ca1bf5dd263eff8e91cdc
parentMerge pull request #2492 from Kloen/killing-warnings-HD1.5ReMIX (diff)
parentcore: inline CPU, 132 warnings fixed on GCC (diff)
downloadyuzu-5bb6753f2edd7cd8727db8ed9f820fb7c571a3ac.tar.gz
yuzu-5bb6753f2edd7cd8727db8ed9f820fb7c571a3ac.tar.xz
yuzu-5bb6753f2edd7cd8727db8ed9f820fb7c571a3ac.zip
Merge pull request #2494 from Kloen/killing-warnings-2-final-mix
core: inline CPU, 132 warnings fixed on GCC
-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