spz3/PageTable.cpp

6 lines
109 B
C++

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