This commit is contained in:
Morten Delenk 2016-02-06 20:04:17 +01:00
parent 332f74c9a9
commit ec699655bc

View file

@ -49,7 +49,7 @@ auto PMM::operator >> (void * &addr) -> PMM & {
addr=nullptr;
return *this;
}
auto operator << (const void * addr) -> PMM & {
auto PMM::operator << (const void * addr) -> PMM & {
unsigned int address=(unsigned int)addr;
address>>=12;
int index=address>>5;