spz3/PageTable.cpp

6 lines
109 B
C++
Raw Normal View History

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