hle: kernel: k_page_linked_list: Add Empty method.

merge-requests/60/head
bunnei 2022-03-26 01:02:42 +07:00
parent 4e2401c11a
commit f29410d821
1 changed files with 4 additions and 0 deletions

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