summaryrefslogtreecommitdiffstats
path: root/src/core/core.h
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-08-24 07:32:38 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-08-24 07:32:38 +0200
commit84b4ac572954c3fbf114a877f00a12020d3b31f8 (patch)
tree4b257caf10eb6e7dfd2113671a7ebdcd845dcf3b /src/core/core.h
parentMerge pull request #6878 from BreadFish64/optimize-GetHostThreadID (diff)
downloadyuzu-84b4ac572954c3fbf114a877f00a12020d3b31f8.tar
yuzu-84b4ac572954c3fbf114a877f00a12020d3b31f8.tar.gz
yuzu-84b4ac572954c3fbf114a877f00a12020d3b31f8.tar.bz2
yuzu-84b4ac572954c3fbf114a877f00a12020d3b31f8.tar.lz
yuzu-84b4ac572954c3fbf114a877f00a12020d3b31f8.tar.xz
yuzu-84b4ac572954c3fbf114a877f00a12020d3b31f8.tar.zst
yuzu-84b4ac572954c3fbf114a877f00a12020d3b31f8.zip
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 65b447a1c..f9116ebb6 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -120,12 +120,7 @@ public:
* Gets the instance of the System singleton class.
* @returns Reference to the instance of the System singleton class.
*/
- [[deprecated("Use of the global system instance is deprecated")]] static System& GetInstance() {
- if (!s_instance) {
- abort();
- }
- return *s_instance;
- }
+ [[deprecated("Use of the global system instance is deprecated")]] static System& GetInstance();
static void InitializeGlobalInstance();