spz3/PageTable.cpp

6 lines
117 B
C++

#include "PageTable.h"
PTE &PageTable::operator[](const unsigned int index) {
return this->entries.at(index);
}