diff options
author | Mai <mai.iam2048@gmail.com> | 2023-01-27 00:07:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-27 00:07:50 +0000 |
commit | e54d08fc1fa79f6c0e66f2e2ef06f21ca36cf881 (patch) | |
tree | 6b0fd0ba833601d405256c267ccea7bad46a22a9 | |
parent | 7d0a77a825ff16fc3449cd32d436107507e19ae8 (diff) | |
parent | e9e1e7aa3a1e7cb28acc5b82249740dded7b4615 (diff) |
Merge pull request #9685 from liamwhite/minmax
kernel: unbreak min/max template deduction on Apple Clang
-rw-r--r-- | src/core/hle/kernel/k_page_table.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_page_table.cpp b/src/core/hle/kernel/k_page_table.cpp index fbd28f5f37..2e13d5d0df 100644 --- a/src/core/hle/kernel/k_page_table.cpp +++ b/src/core/hle/kernel/k_page_table.cpp @@ -2144,8 +2144,8 @@ void KPageTable::RemapPageGroup(PageLinkedList* page_list, KProcessAddress addre const KMemoryInfo info = it->GetMemoryInfo(); // Determine the range to map. - KProcessAddress map_address = std::max(info.GetAddress(), start_address); - const KProcessAddress map_end_address = std::min(info.GetEndAddress(), end_address); + KProcessAddress map_address = std::max<VAddr>(info.GetAddress(), start_address); + const KProcessAddress map_end_address = std::min<VAddr>(info.GetEndAddress(), end_address); ASSERT(map_end_address != map_address); // Determine if we should disable head merge. |