mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-12 08:57:59 -05:00
general: Remove MakeResult helpers
This is made obsolete by the presence of implicit constructors.
This commit is contained in:
@ -335,7 +335,7 @@ public:
|
||||
CASCADE_CODE(result);
|
||||
|
||||
if (ValidateRegionForMap(page_table, addr, size)) {
|
||||
return MakeResult<VAddr>(addr);
|
||||
return addr;
|
||||
}
|
||||
}
|
||||
|
||||
@ -371,7 +371,7 @@ public:
|
||||
}
|
||||
|
||||
if (ValidateRegionForMap(page_table, addr, size)) {
|
||||
return MakeResult<VAddr>(addr);
|
||||
return addr;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user