early-access version 3053

This commit is contained in:
pineappleEA
2022-10-26 00:12:28 +02:00
parent 3dfc19dfb1
commit 9677f1e522
3 changed files with 15 additions and 10 deletions

View File

@@ -44,7 +44,7 @@ public:
[[nodiscard]] unsigned Count() const noexcept {
unsigned count = 0;
for (const auto [index, value] : page_table) {
for (const auto& [index, value] : page_table) {
count += value;
}
return count;