summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-01-30 00:40:50 +0100
committerGitHub <noreply@github.com>2017-01-30 00:40:50 +0100
commit5bb6753f2edd7cd8727db8ed9f820fb7c571a3ac (patch)
tree15ae7583dba1d3cf2f6ca1bf5dd263eff8e91cdc /src
parentMerge pull request #2492 from Kloen/killing-warnings-HD1.5ReMIX (diff)
parentcore: inline CPU, 132 warnings fixed on GCC (diff)
downloadyuzu-5bb6753f2edd7cd8727db8ed9f820fb7c571a3ac.tar
yuzu-5bb6753f2edd7cd8727db8ed9f820fb7c571a3ac.tar.gz
yuzu-5bb6753f2edd7cd8727db8ed9f820fb7c571a3ac.tar.bz2
yuzu-5bb6753f2edd7cd8727db8ed9f820fb7c571a3ac.tar.lz
yuzu-5bb6753f2edd7cd8727db8ed9f820fb7c571a3ac.tar.xz
yuzu-5bb6753f2edd7cd8727db8ed9f820fb7c571a3ac.tar.zst
yuzu-5bb6753f2edd7cd8727db8ed9f820fb7c571a3ac.zip
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:
static System s_instance;
};
-static ARM_Interface& CPU() {
+inline ARM_Interface& CPU() {
return System::GetInstance().CPU();
}