소스 검색

hle: kernel: k_page_linked_list: Add Empty method.

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

+ 4 - 0
src/core/hle/kernel/k_page_linked_list.h

@@ -89,6 +89,10 @@ public:
         return ResultSuccess;
     }
 
+    bool Empty() const {
+        return nodes.empty();
+    }
+
 private:
     std::list<Node> nodes;
 };