ldr_ro: change std::tie to structured binding

This commit is contained in:
Valentin Vanelslande 2018-11-07 13:38:52 -05:00 committed by GitHub
parent 1444d60109
commit 0f4a6e39c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -353,9 +353,7 @@ void RO::LoadCRO(Kernel::HLERequestContext& ctx, bool link_on_load_bug_fix) {
slot->memory_synchronizer.ResizeMemoryBlock(cro_address, cro_buffer_ptr, fix_size);
}
VAddr exe_begin;
u32 exe_size;
std::tie(exe_begin, exe_size) = cro.GetExecutablePages();
auto [exe_begin, exe_size] = cro.GetExecutablePages();
if (exe_begin) {
result = process->vm_manager.ReprotectRange(exe_begin, exe_size,
Kernel::VMAPermission::ReadExecute);