From 6130aef64dcfb2b419d78bc77f815727a967a837 Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Sat, 5 Nov 2022 21:08:45 +0100 Subject: [PATCH] early-access version 3090 --- README.md | 2 +- src/core/hle/kernel/k_class_token.cpp | 2 +- src/core/hle/kernel/k_handle_table.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7a55fd381..bf951cc85 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 3089. +This is the source code for early-access 3090. ## Legal Notice diff --git a/src/core/hle/kernel/k_class_token.cpp b/src/core/hle/kernel/k_class_token.cpp index 27b8e3b45..a910b02da 100755 --- a/src/core/hle/kernel/k_class_token.cpp +++ b/src/core/hle/kernel/k_class_token.cpp @@ -120,6 +120,6 @@ static_assert(std::is_final_v && std::is_base_of_v && // std::is_base_of_v); -static_assert(std::is_base_of::value); +static_assert(std::is_base_of_v); } // namespace Kernel diff --git a/src/core/hle/kernel/k_handle_table.h b/src/core/hle/kernel/k_handle_table.h index 81f100ad6..a9403a139 100755 --- a/src/core/hle/kernel/k_handle_table.h +++ b/src/core/hle/kernel/k_handle_table.h @@ -74,7 +74,7 @@ public: KScopedDisableDispatch dd{m_kernel}; KScopedSpinLock lk(m_lock); - if constexpr (std::is_same::value) { + if constexpr (std::is_same_v) { return this->GetObjectImpl(handle); } else { if (auto* obj = this->GetObjectImpl(handle); obj != nullptr) [[likely]] {