spz3/PageTable.cpp

6 lines
117 B
C++
Raw Normal View History

2025-03-31 17:19:43 +03:00
#include "PageTable.h"
PTE &PageTable::operator[](const unsigned int index) {
2025-03-31 17:19:43 +03:00
return this->entries.at(index);
}