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