6 lines
117 B
C++
6 lines
117 B
C++
#include "PageTable.h"
|
|
|
|
PTE &PageTable::operator[](const unsigned int index) {
|
|
return this->entries.at(index);
|
|
}
|