소스 검색

core: Mark GetInstance() as deprecated

This way it's obvious that this function shouldn't be used in any future
code.
Lioncash 5 년 전
부모
커밋
5c4e237902
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/core/core.h

+ 1 - 1
src/core/core.h

@@ -120,7 +120,7 @@ public:
      * Gets the instance of the System singleton class.
      * @returns Reference to the instance of the System singleton class.
      */
-    static System& GetInstance() {
+    [[deprecated("Use of the global system instance is deprecated")]] static System& GetInstance() {
         return s_instance;
     }