소스 검색

Update k_code_memory.h

itsmeft24 4 년 전
부모
커밋
e05c86aa3c
1개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. 6 6
      src/core/hle/kernel/k_code_memory.h

+ 6 - 6
src/core/hle/kernel/k_code_memory.h

@@ -54,13 +54,13 @@ public:
     }
 
 private:
-    KPageLinkedList m_page_group;
-    KProcess* m_owner;
-    VAddr m_address;
+    KPageLinkedList m_page_group{};
+    KProcess* m_owner{};
+    VAddr m_address{};
     KLightLock m_lock;
-    bool m_is_initialized;
-    bool m_is_owner_mapped;
-    bool m_is_mapped;
+    bool m_is_initialized{};
+    bool m_is_owner_mapped{};
+    bool m_is_mapped{};
 };
 
 } // namespace Kernel